feat: Huey replaces sovereign-orchestration — 77 lines for 3,846

orchestration.py: SqliteHuey instance (6 lines)
tasks.py: triage, PR review, dispatch, 10-line enforcement (71 lines)
config.yaml: remove MCP server entry, point to Huey
README: document the change

pip install huey && huey_consumer.py tasks.huey -w 2 -k thread
This commit is contained in:
Perplexity
2026-03-25 21:12:26 +00:00
parent 4099d1ffd8
commit 6d76442d77
4 changed files with 87 additions and 12 deletions

View File

@@ -26,12 +26,15 @@ timmy-config/
└── cron/ ← Cron job definitions
```
## Important: No Loop Scripts Here
## Orchestration: Huey
All agent loop scripts (claude-loop.sh, gemini-loop.sh, etc.) have been **removed**.
They are replaced by [sovereign-orchestration](https://143.198.27.163:3000/Timmy_Foundation/sovereign-orchestration) — a single Python process with SQLite task queue.
All orchestration (triage, PR review, dispatch) runs via [Huey](https://github.com/coleifer/huey) with SQLite.
`orchestration.py` (6 lines) + `tasks.py` (~70 lines) replace the entire sovereign-orchestration repo (3,846 lines).
See DEPRECATED.md for details.
```bash
pip install huey
huey_consumer.py tasks.huey -w 2 -k thread
```
## Deploy