dispatching-parallel-agents
Installation
SKILL.md
Dispatching Parallel Agents
Core Principle
Dispatch one agent per independent problem domain. Let them work concurrently. 3 problems solved in parallel = time of 1.
When to Use
Use when:
- 3+ test files failing with different root causes
- Multiple subsystems broken independently
- Each problem can be understood without context from others
- No shared state between investigations
Do NOT use when:
- Failures are related (fixing one might fix others)
- Agents would edit the same files
- You need full system context to understand any single problem