Compare commits

..

1 Commits

Author SHA1 Message Date
Alexander Whitestone
cd90b87625 [gemini] [OPENCLAW] Phase 6: Multi-agent sessions (Timmy → Reflex → Pilot) (#63) 2026-03-27 21:00:59 -04:00
2 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
{
"updated_at": "2026-03-27T21:56:42.192325",
"updated_at": "2026-03-27T15:20:52.948451",
"platforms": {
"discord": [
{

View File

@@ -1159,17 +1159,17 @@ def archive_pipeline_tick():
@huey.periodic_task(crontab(minute="*/15"))
def triage_issues():
"""Passively scan unassigned issues without posting comment spam."""
"""Score and assign unassigned issues across all repos."""
g = GiteaClient()
backlog = []
found = 0
for repo in REPOS:
for issue in g.find_unassigned_issues(repo, limit=10):
backlog.append({
"repo": repo,
"issue": issue.number,
"title": issue.title,
})
return {"unassigned": len(backlog), "sample": backlog[:20]}
found += 1
g.create_comment(
repo, issue.number,
"🔍 Triaged by Huey — needs assignment."
)
return {"triaged": found}
@huey.periodic_task(crontab(minute="*/30"))