Add Athena research sub-agent and improve agent-development skill

- Add Athena sub-agent for non-technical research tasks
- Enhance agent-development skill with 6 improvements from reflection:
  * Add explicit mode field requirement (HIGH)
  * Add temperature recommendations by agent type (MEDIUM)
  * Enforce 'Core Responsibilities' header (MEDIUM)
  * Add numbered responsibility format guidance (LOW)
  * Note section name flexibility (LOW)
  * Add validation script alternative (LOW)
- Create 6 beads issues for Athena agent follow-up work
This commit is contained in:
m3tm3re
2026-01-24 19:40:38 +01:00
parent b39e61440b
commit 975ce8f993
4 changed files with 224 additions and 5 deletions

View File

@@ -101,5 +101,30 @@
"external_directory": "ask",
"doom_loop": "ask"
}
},
"athena": {
"description": "Goddess of wisdom and knowledge. Research sub-agent for non-technical investigation and analysis.",
"model": "zai-coding-plan/glm-4.7",
"prompt": "{file:./prompts/athena.txt}",
"permission": {
"read": {
"*": "allow",
"*.env": "deny",
"*.env.*": "deny",
"*.env.example": "allow",
"*/.ssh/*": "deny",
"*/.gnupg/*": "deny",
"*credentials*": "deny",
"*secrets*": "deny",
"*.pem": "deny",
"*.key": "deny",
"*/.aws/*": "deny",
"*/.kube/*": "deny"
},
"edit": "deny",
"bash": "deny",
"external_directory": "deny",
"doom_loop": "deny"
}
}
}