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
3 changed files with 10 additions and 13 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

@@ -206,10 +206,7 @@ providers:
base_url: http://localhost:11434/v1
model: hermes3:latest
mcp_servers:
# Key = prefix for tool names: mcp_{key}_toolname
# Shorter key = less room for model hallucination.
# Rename here + update morrowind/mcp_config.yaml to match.
mw:
morrowind:
command: python3
args:
- /Users/apayne/.timmy/morrowind/mcp_server.py

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"))