Files
timmy-home/training-data/dpo-pairs/session_20260323_152958_f577bb.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": "Implement 4 TODO stubs in /tmp/timmy-agents/hermes/repo/src/timmyctl/cli.py for Gitea issue #1128.\n\nThe file has 4 TODOs:\n1. Line 134: \"TODO: Implement actual automation execution\" - Execute automations from config\n2. Line 162: \"TODO: Persist to actual logbook file\" - Append to .loop/logbook.jsonl\n3. Line 208: \"TODO: Fetch actual PRs from Gitea API\" - Real PR fetching\n4. Line 219: \"TODO: Fetch relevant issues from Gitea API\" - Real issue fetching\n\nGITEA API: http://143.198.27.163:3000/api/v1/repos/rockachopa/Timmy-time-dashboard\nToken is read from env var GITEA_TOKEN or file ~/.hermes/gitea_token_vps or ~/.hermes/gitea_token\n\nImplementation requirements:\n- For automation execution (#1): Run each automation's \"command\" field from the config via subprocess. Show output with Rich.\n- For logbook (#2): Append a JSON line to .loop/logbook.jsonl with timestamp, category, message fields. Create file if needed.\n- For PRs (#3): Use urllib.request to GET /repos/rockachopa/Timmy-time-dashboard/pulls?state=open with the token. Display in the table.\n- For issues (#4): Use urllib.request to GET /repos/rockachopa/Timmy-time-dashboard/issues?state=open&type=issues&limit=10 with the token. Display in the table.\n\nIMPORTANT:\n- Use urllib.request (stdlib) NOT requests/httpx - avoid new dependencies\n- Read GITEA_TOKEN from env or from Path(\"~/.hermes/gitea_token_vps\").expanduser() or Path(\"~/.hermes/gitea_token\").expanduser()\n- Add a helper function _gitea_api_get(endpoint) that handles auth and returns parsed JSON\n- Keep error handling graceful - if API fails, show placeholder with error message\n- Remove the TODO comments and placeholder rows\n- The GITEA_URL should be configurable via env var GITEA_URL defaulting to http://143.198.27.163:3000\n\nAfter making changes:\n1. cd /tmp/timmy-agents/hermes/repo\n2. Run: tox -e format (to auto-format)\n3. Run: tox -e unit (to verify tests pass)\n4. Create branch: git checkout -b feat/timmyctl-implement-stubs\n5. Stage and commit: git add src/timmyctl/c",
"chosen": "",
"session": "session_20260323_152958_f577bb.json"
}
]