dispatching-parallel-agents
Installation
SKILL.md
Dispatching Parallel Agents
When you have multiple unrelated tasks (different test files, different subsystems, different bugs), investigating them sequentially wastes time. Each investigation is independent and can happen in parallel.
Core principle: Dispatch one agent per independent problem domain. Let them work concurrently.
When to Use
Multiple independent tasks?
↓ YES
Dispatch in parallel (3+ domains)
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