Tracked: morrowind agent (py/cfg), skills/, training-data/, research/, notes/, specs/, test-results/, metrics/, heartbeat/, briefings/, memories/, skins/, hooks/, decisions.md, OPERATIONS.md, SOUL.md Excluded: screenshots, PNGs, binaries, sessions, databases, secrets, audio cache, timmy-config/ and timmy-telemetry/ (separate repos)
12 lines
4.9 KiB
JSON
12 lines
4.9 KiB
JSON
[
|
|
{
|
|
"prompt": "TIME BUDGET: You have 20 minutes for this cycle. Plan accordingly \u2014 do not start work you cannot finish.\n\nPRIORITIZED QUEUE (11 ready issues):\n 1. #1346 [BUG] score=8 \u2014 227 mypy errors \u2014 typecheck gate broken on main\n files: src/config.py, src/timmy/agent.py\n 2. #1342 [REFACTOR] score=8 \u2014 Split cascade.py \u2014 1241 lines, largest module in codebase\n files: src/infrastructure/router/health.py, src/infrastructure/router/cascade.py\n 3. #1285 [CHORE] score=7 \u2014 Enforce Normal Developer discipline \u2014 tighten lint, type-che\n files: pyproject.toml, Makefile, .pre-commit-config.yaml\n 4. #932 [BUG] score=7 \u2014 LHF: Fix xdist and coverage conflict in pyproject.toml\n files: pyproject.toml\n 5. #1314 [TEST] score=6 \u2014 Add unit tests for thinking/engine.py \u2014 430 lines untested\n files: tests/timmy/test_thinking_engine.py, src/timmy/thinking/engine.py\n 6. #1315 [TEST] score=6 \u2014 Add unit tests for events/bus.py \u2014 356 lines untested\n files: src/infrastructure/events/bus.py, tests/infrastructure/test_events_bus.py\n 7. #918 [TEST] score=6 \u2014 Test Coverage: Core Agent Modules (timmy.py and semantic_mem\n files: src/timmy/agent.py, src/timmy/memory/semantic_memory.py\n 8. #908 [FEATURE] score=6 \u2014 Wire Gitea API for Automated PR Creation from Experiments\n files: src/timmy/gitea_experiments.py\n ... +3 more\n\nPick from the TOP of this queue. Issue #1346 is highest priority.\n\nYou are the Timmy development loop orchestrator.\n\nCANONICAL REPO: ~/Timmy-Time-dashboard (SACRED \u2014 do NOT touch, read-only)\nAPI: http://143.198.27.163:3000/api/v1/repos/rockachopa/Timmy-time-dashboard\nGITEA TOKEN: ~/.hermes/gitea_token (Timmy user \u2014 admin, NOT ~/.config/gitea/token)\nSTATE: ~/Timmy-Time-dashboard/.loop/state.json\nCLAIMS: ~/Timmy-Time-dashboard/.loop/claims.json\n\nYOUR WORKSPACE: /tmp/timmy-agents/hermes/repo (for small direct fixes only)\nKIMI'S WORKSPACE: ~/worktrees/kimi-{issue} (managed by kimi-loop.sh, hands off)\n\n\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550",
|
|
"chosen": "Starting development cycle. Let me assess the current state first.",
|
|
"session": "session_20260324_000841_bf71f9.json"
|
|
},
|
|
{
|
|
"prompt": "You've reached the maximum number of tool-calling iterations allowed. Please provide a final response summarizing what you've found and accomplished so far, without calling any more tools.",
|
|
"chosen": "## Cycle Summary\n\n### Issue #1346 \u2014 227 mypy errors (typecheck gate broken on main)\n\n**Root cause identified and fix prepared (not yet merged):**\n\nThe core problem is that `mypy src` runs without knowing `src/` is the Python path root. Every `from config import settings` import (used in 30+ files) fails because mypy can't resolve the module path. This accounts for **79 of 282 errors** \u2014 all false positives from bad path resolution, not real type issues.\n\n**Fix (2 files, 7 lines changed):**\n\n1. `pyproject.toml` \u2014 Added `[tool.mypy]` section:\n - `mypy_path = \"src\"` \u2014 tells mypy where to find modules\n - `ignore_missing_imports = true` \u2014 moved from CLI flag to config\n - `explicit_package_bases = true` \u2014 prevents dual module name conflicts\n - `exclude = [\"bannerlord\"]` \u2014 avoids duplicate module detection\n\n2. `tox.ini` \u2014 Removed `--ignore-missing-imports` from CLI (now in pyproject.toml)\n\n**Result:** 282 \u2192 203 errors (28% reduction). Remaining 203 are real type errors.\n\n**Blocked by:** Pre-commit hooks failing on pre-existing lint errors in test files (ruff finding `import not at top of file` in test files). The hooks reject the commit even though my changes are only to pyproject.toml and tox.ini.\n\n### Next Steps (for next cycle)\n\n1. **Unblock the commit** \u2014 The pre-commit hook runs ruff on ALL files, not just staged ones. Either fix the pre-existing lint errors in test files first, or the hook needs scoping to only check staged files.\n\n2. **Push the branch, open PR, merge** \u2014 Branch `fix/mypy-path-resolution` is ready locally at `/tmp/timmy-agents/hermes/repo`.\n\n3. **File follow-up issue** \u2014 The remaining 203 real type errors need per-file fixes. Top offenders:\n - `infrastructure/visitor.py` (12 errors \u2014 `_visitors` attr)\n - `infrastructure/router/cascade.py` (25 errors)\n - `timmy/agent.py` (14 errors \u2014 Ollama arg types)\n - `integrations/*/` (various bridge type issues)\n\n4. **File a bug** \u2014 Pre-commit hooks run linting on the entire repo, not just staged ",
|
|
"session": "session_20260324_000841_bf71f9.json"
|
|
}
|
|
] |