Files
timmy-config/tasks.py

72 lines
2.6 KiB
Python
Raw Normal View History

"""Timmy's scheduled work — triage, PR review, dispatch."""
from orchestration import huey
from huey import crontab
# Import the Gitea client we already own
import sys; sys.path.insert(0, str(__import__('pathlib').Path.home() / '.hermes' / 'hermes-agent'))
from tools.gitea_client import GiteaClient
REPOS = [
"Timmy_Foundation/the-nexus",
"Timmy_Foundation/autolora",
"Timmy_Foundation/timmy-config",
]
NET_LINE_LIMIT = 10
@huey.periodic_task(crontab(minute='*/15'))
def triage_issues():
"""Score and assign unassigned issues across all repos."""
g = GiteaClient()
for repo in REPOS:
for issue in g.find_unassigned_issues(repo, limit=10):
g.create_comment(repo, issue.number, "🔍 Triaged by Huey — needs assignment.")
@huey.periodic_task(crontab(minute='*/30'))
def review_prs():
"""Review open PRs: check net diff, reject violations, merge clean ones."""
g = GiteaClient()
for repo in REPOS:
for pr in g.list_pulls(repo, state="open", limit=20):
files = g.get_pull_files(repo, pr.number)
net = sum(f.additions - f.deletions for f in files)
if net > NET_LINE_LIMIT:
g.create_comment(
repo, pr.number,
f"❌ Net +{net} lines exceeds the {NET_LINE_LIMIT}-line limit. "
f"Find {net - NET_LINE_LIMIT} lines to cut. See CONTRIBUTING.md."
)
continue
if pr.user.login == pr.head_repo: # self-merge guard placeholder
continue
# Clean PR — could auto-merge here when CI gate exists
@huey.periodic_task(crontab(minute='*/10'))
def dispatch_assigned():
"""Pick up issues assigned to agents and dispatch work."""
g = GiteaClient()
agents = ["claude", "gemini", "kimi", "grok", "perplexity"]
for repo in REPOS:
for agent in agents:
issues = g.find_agent_issues(repo, agent, limit=5)
for issue in issues:
if any(c.body and "dispatched" in c.body.lower()
for c in g.list_comments(repo, issue.number, limit=5)):
continue # Already dispatched
dispatch_work.schedule((repo, issue.number, agent), delay=0)
@huey.task(retries=3, retry_delay=60)
def dispatch_work(repo, issue_number, agent):
"""Dispatch a single issue to an agent. Huey handles retry."""
g = GiteaClient()
issue = g.get_issue(repo, issue_number)
g.create_comment(
repo, issue_number,
f"⚡ Dispatched to `{agent}`. Huey task queued with retry."
)
# Agent execution happens via hermes harness — this is the bridge