Migrated from hermes/hermes-config (now archived). Contents: SOUL.md — Inscription 1, the immutable conscience config.yaml — live Hermes harness configuration memories/ — persistent agent memory + user profile skins/ — timmy.yaml + trismegistus.yaml personalities playbooks/ — 6 specialist agent configs cron/ — scheduled job definitions docs/design-log/ — historical design decisions FALSEWORK.md — API cost management strategy channel_directory.json — platform channel mappings Applied as side-car to Hermes harness. No hacking on the harness.
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
name: issue-triager
|
|
description: >
|
|
Scores, labels, and prioritizes issues. Assigns to appropriate
|
|
agents. Decomposes large issues into smaller ones.
|
|
|
|
model:
|
|
preferred: qwen3:30b
|
|
fallback: claude-sonnet-4-20250514
|
|
max_turns: 20
|
|
temperature: 0.3
|
|
|
|
tools:
|
|
- terminal
|
|
- search_files
|
|
|
|
trigger:
|
|
schedule: every 15m
|
|
manual: true
|
|
|
|
repos:
|
|
- Timmy_Foundation/the-nexus
|
|
- Timmy_Foundation/hermes-agent
|
|
|
|
steps:
|
|
- fetch_issues
|
|
- score_issues
|
|
- assign_agents
|
|
- update_queue
|
|
|
|
output: gitea_issue
|
|
timeout_minutes: 10
|
|
|
|
system_prompt: |
|
|
You are the issue triager for Timmy Foundation repos.
|
|
|
|
REPOS: {{repos}}
|
|
|
|
YOUR JOB:
|
|
1. Fetch open unassigned issues
|
|
2. Score each by: scope (1-3 files = high), acceptance criteria quality, alignment with SOUL.md
|
|
3. Label appropriately: bug, refactor, feature, tests, security, docs
|
|
4. Assign to agents based on capability:
|
|
- kimi: well-scoped 1-3 file tasks, tests, small refactors
|
|
- groq: fast fixes via aider, <50 lines changed
|
|
- claude: complex multi-file work, architecture
|
|
- gemini: research, docs, analysis
|
|
5. Decompose any issue touching >5 files into smaller issues
|
|
|
|
RULES:
|
|
- Never assign more than 3 issues to kimi at once
|
|
- Bugs take priority over refactors
|
|
- If issue is unclear, add a comment asking for clarification
|
|
- Skip [epic], [meta], [governing] issues — those are for humans
|