Files
timmy-home/training-data/dpo-pairs/session_20260324_001954_bf2b18.json
Alexander Whitestone 0d64d8e559 initial: sovereign home — morrowind agent, skills, training-data, research, specs, notes, operational docs
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)
2026-03-27 13:05:57 -04:00

7 lines
2.1 KiB
JSON

[
{
"prompt": "Fix all mypy type-checking errors in a Python project. The repo is at /tmp/timmy-agents/hermes/repo on branch fix/mypy-errors-1346. Run `tox -e typecheck` to verify (timeout 120s).\n\nHere are ALL 131 mypy errors to fix. Apply the MINIMAL fix for each - don't refactor, just make mypy happy:\n\nSTRATEGY BY CATEGORY:\n\n1. [import-untyped] (12 errors) - yaml, requests\n FIX: Check if there's a mypy config in pyproject.toml or mypy.ini. Add types-PyYAML and types-requests to the typecheck deps in tox.ini. If that's complex, alternatively add `# type: ignore[import-untyped]` to the import lines.\n\n2. [attr-defined] on visitor.py (12 errors) - \"_visitors\" not found on VisitorRegistry\n FIX: Look at the class - probably _visitors is set dynamically. Add a class-level annotation: `_visitors: dict[str, Any]` or similar.\n\n3. [attr-defined] on mumble/bridge.py (4), discord.py (6), telegram_bot/bot.py (5), voice_tts.py (2), voice_loop.py (1) - \"None\" has no attribute\n FIX: These are attributes on Optional objects. Add `assert self.xxx is not None` before usage, or use `# type: ignore[attr-defined]`.\n\n4. [attr-defined] on thinking mixins (5) and _issue_filing.py (1) and _snapshot.py (1) - mixin references host class attrs\n FIX: Add `# type: ignore[attr-defined]` - mixins legitimately access host class attributes.\n\n5. [attr-defined] on monitoring.py (4) - LedgerEntry has no \"get\"\n FIX: Check the type - probably needs a cast or type: ignore.\n\n6. [attr-defined] on sovereignty_metrics.py - none, this is [index] errors\n \n7. [assignment] (11 errors) - implicit Optional, type mismatches\n - presence.py:51, presence.py:105, router/api.py:206, semantic.py:266: Change `param: str = None` to `param: str | None = None` or `param: Optional[str] = None`\n - daily_run.py:51,53,55: str | None assigned to str - add `or \"\"` or change annotation\n - session_logger.py:56: float assigned to str - fix annotation\n - agentic_loop.py:269: None assigned to AgenticStep - use Optional\n - percept",
"chosen": "",
"session": "session_20260324_001954_bf2b18.json"
}
]