Load, merge, and validate subagents configuration from global and project files
View on GitHubplugins/subagents/skills/configuration/SKILL.md
February 5, 2026
Select agents to install to:
npx add-skill https://github.com/kenkenmain/ken-cc-plugins/blob/main/plugins/subagents/skills/configuration/SKILL.md -a claude-code --skill configurationInstallation paths:
.claude/skills/configuration/# Configuration Management
Manage subagents workflow configuration for complexity scoring, models, and workflow options.
## Config Locations
- **Global:** `~/.claude/subagents-config.json`
- **Project:** `.claude/subagents-config.json`
Project overrides global, which overrides defaults.
## Default Configuration
```json
{
"version": "2.0",
"defaults": {
"model": "sonnet-4.5",
"gitWorkflow": "branch+PR",
"blockOnSeverity": "low"
},
"stages": {
"EXPLORE": {
"enabled": true,
"model": "sonnet-4.5",
"maxParallelAgents": 10
},
"PLAN": {
"enabled": true,
"brainstorm": { "inline": true },
"planning": {
"model": "sonnet-4.5",
"maxParallelAgents": 10,
"mode": "parallel"
},
"review": {
"tool": "codex-high",
"bugFixer": "codex-high",
"maxRetries": 3
}
},
"IMPLEMENT": {
"enabled": true,
"tasks": {
"maxParallelAgents": 10,
"useComplexityScoring": true,
"complexityModels": {
"easy": "sonnet-task-agent",
"medium": "opus-task-agent",
"hard": "codex-task-agent"
}
},
"review": {
"tool": "codex-high",
"bugFixer": "codex-high",
"maxRetries": 3
}
},
"TEST": {
"enabled": true,
"commands": { "lint": "make lint", "test": "make test" },
"review": {
"tool": "codex-high",
"bugFixer": "codex-high",
"maxRetries": 3
}
},
"FINAL": {
"enabled": true,
"review": { "tool": "codex-high", "bugFixer": "codex-high", "maxRetries": 3 },
"git": {
"workflow": "branch+PR",
"excludePatterns": [".agents/**"]
}
}
},
"pipeline": {
"defaultProfile": null,
"profiles": {
"minimal": { "phases": 5, "stages": ["EXPLORE", "IMPLEMENT", "FINAL"] },
"standard": { "phases": 13, "stages": ["EXPLORE", "PLAN", "IMPLEMENT", "TEST", "FINAL"]