Compare commits
1 Commits
gemini/iss
...
gemini/iss
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d781a215d |
@@ -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
|
||||
|
||||
16
tasks.py
16
tasks.py
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user