Model upgrade: - qwen2.5:14b → qwen3.5:latest across config, tools, and docs - Added qwen3.5 to multimodal model registry Self-hosted Gitea CI: - .gitea/workflows/tests.yml: lint + test jobs via act_runner - Unified Dockerfile: pre-baked deps from poetry.lock for fast CI - sitepackages=true in tox for ~2s dep resolution (was ~40s) - OLLAMA_URL set to dead port in CI to prevent real LLM calls Test isolation fixes: - Smoke test fixture mocks create_timmy (was hitting real Ollama) - WebSocket sends initial_state before joining broadcast pool (race fix) - Tests use settings.ollama_model/url instead of hardcoded values - skip_ci marker for Ollama-dependent tests, excluded in CI tox envs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
84 lines
1.1 KiB
Plaintext
84 lines
1.1 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.Python
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Virtual envs
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Secrets / local config — commit only .env.example (the template)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
discord_credentials.txt
|
|
|
|
# Backup / temp files
|
|
*~
|
|
|
|
# SQLite — never commit databases or WAL/SHM artifacts
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.db-journal
|
|
|
|
# Runtime PID files
|
|
.watchdog.pid
|
|
|
|
# Chat platform state files (contain bot tokens)
|
|
telegram_state.json
|
|
discord_state.json
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|
|
reports/
|
|
|
|
# Self-modify reports (auto-generated)
|
|
data/self_modify_reports/
|
|
|
|
# Error logs (auto-generated)
|
|
logs/
|
|
src/data/
|
|
|
|
# Handoff context (session-scoped)
|
|
.handoff/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.claude/
|
|
|
|
# Local content — user-specific or generated
|
|
MEMORY.md
|
|
memory/self/
|
|
TIMMYTIME
|
|
introduction.txt
|
|
messages.txt
|
|
morning_briefing.txt
|
|
markdown_report.md
|
|
data/timmy_soul.jsonl
|
|
scripts/migrate_to_zeroclaw.py
|
|
src/infrastructure/db_pool.py
|
|
workspace/
|
|
|
|
# Gitea Actions runner state
|
|
.runner
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
.Spotlight-V100
|
|
.Trashes
|