Files
timmy-config/orchestration.py
Perplexity 6d76442d77 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
2026-03-25 21:12:32 +00:00

7 lines
215 B
Python

"""Sovereign orchestration — Huey replaces 3,843 lines of homebrew."""
from huey import SqliteHuey, crontab
from pathlib import Path
huey = SqliteHuey(filename=str(Path.home() / ".hermes" / "orchestration.db"))