Fix Athena agent configuration and prompt to match agent-development skill guidelines

- Add explicit 'mode': 'subagent' field to athena agent
- Add 'temperature': 0.1 to athena agent for deterministic results
- Rename 'Core Capabilities' to 'Your Core Responsibilities:'
- Convert responsibilities from subsections to numbered list format
- Rename 'Ethical Guidelines' to 'Quality Standards'
- Remove references to non-existent validate-agent.sh script

All 6 related beads issues closed.
This commit is contained in:
m3tm3re
2026-01-26 19:34:43 +01:00
parent 975ce8f993
commit 87bd75872c
4 changed files with 27 additions and 29 deletions

View File

@@ -427,8 +427,7 @@ Prompts for: location, description, tools, then generates the agent file.
1. Add agent to `opencode.json` or `agents.json`
2. Create prompt file in `prompts/` directory
3. Validate with `scripts/validate-agent.sh` (if available in repo)
- Alternative: Use `python3 -c "import json; json.load(open('agents.json'))"` for syntax check
3. Validate with: `python3 -c "import json; json.load(open('agents.json'))"` for syntax check
### Method 3: Markdown File
@@ -442,10 +441,7 @@ Validate agent configuration:
```bash
# Validate agents.json
./scripts/validate-agent.sh agents.json
# Validate markdown agent
./scripts/validate-agent.sh ~/.config/opencode/agents/review.md
python3 -c "import json; json.load(open('agents.json'))"
```
## Testing