code:subagents
Installation
SKILL.md
Spec Subagents
Fresh subagent per task. Two-stage review after each. Parallel when independent, sequential when dependent.
When to Use Subagents
Use when:
- Executing tasks from plan.json with subagent support available
- 2+ independent tasks that don't share state or files
- Each problem can be understood without context from others
Don't use when:
- Tasks are tightly coupled (editing the same files)
- You need to understand full system state across tasks
- Failures are related (fixing one might fix others)
- Exploratory work where the problem isn't well-defined yet