chore: initialize overstory and ecosystem tools

This commit is contained in:
2026-04-04 12:37:31 -04:00
parent 5d74fc8e69
commit 8ae81b977d
20 changed files with 2072 additions and 0 deletions

View File

@@ -0,0 +1,184 @@
{
"version": "1.0",
"agents": {
"scout": {
"file": "scout.md",
"model": "haiku",
"tools": [
"Read",
"Glob",
"Grep",
"Bash"
],
"capabilities": [
"explore",
"research"
],
"canSpawn": false,
"constraints": [
"read-only"
]
},
"builder": {
"file": "builder.md",
"model": "sonnet",
"tools": [
"Read",
"Write",
"Edit",
"Glob",
"Grep",
"Bash"
],
"capabilities": [
"implement",
"refactor",
"fix"
],
"canSpawn": false,
"constraints": []
},
"reviewer": {
"file": "reviewer.md",
"model": "sonnet",
"tools": [
"Read",
"Glob",
"Grep",
"Bash"
],
"capabilities": [
"review",
"validate"
],
"canSpawn": false,
"constraints": [
"read-only"
]
},
"lead": {
"file": "lead.md",
"model": "opus",
"tools": [
"Read",
"Write",
"Edit",
"Glob",
"Grep",
"Bash",
"Task"
],
"capabilities": [
"coordinate",
"implement",
"review"
],
"canSpawn": true,
"constraints": []
},
"merger": {
"file": "merger.md",
"model": "sonnet",
"tools": [
"Read",
"Write",
"Edit",
"Glob",
"Grep",
"Bash"
],
"capabilities": [
"merge",
"resolve-conflicts"
],
"canSpawn": false,
"constraints": []
},
"coordinator": {
"file": "coordinator.md",
"model": "opus",
"tools": [
"Read",
"Glob",
"Grep",
"Bash"
],
"capabilities": [
"coordinate",
"dispatch",
"escalate"
],
"canSpawn": true,
"constraints": [
"read-only",
"no-worktree"
]
},
"monitor": {
"file": "monitor.md",
"model": "sonnet",
"tools": [
"Read",
"Glob",
"Grep",
"Bash"
],
"capabilities": [
"monitor",
"patrol"
],
"canSpawn": false,
"constraints": [
"read-only",
"no-worktree"
]
}
},
"capabilityIndex": {
"explore": [
"scout"
],
"research": [
"scout"
],
"implement": [
"builder",
"lead"
],
"refactor": [
"builder"
],
"fix": [
"builder"
],
"review": [
"reviewer",
"lead"
],
"validate": [
"reviewer"
],
"coordinate": [
"lead",
"coordinator"
],
"merge": [
"merger"
],
"resolve-conflicts": [
"merger"
],
"dispatch": [
"coordinator"
],
"escalate": [
"coordinator"
],
"monitor": [
"monitor"
],
"patrol": [
"monitor"
]
}
}