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
7 lines
215 B
Python
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"))
|