Use when facing 2+ independent tasks that can be worked on simultaneously without shared state or sequential dependencies
You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed. They should never inherit your session's context or history — you construct exactly what they need.
Core principle: Dispatch one agent per independent problem domain. Let them work concurrently.
Multiple failures?
└─ Are they independent?
├─ NO → Single agent investigates all
└─ YES → Can they work in parallel?
├─ YES → Parallel dispatch (this skill)
└─ NO (shared state) → Sequential agents
Use when:
Don't use when:
Group tasks by what's broken/needed:
Each domain is independent — fixing one doesn't affect others.
Each agent gets:
// Conceptual — use your platform's parallel task API
Task("Fix auth-flow.test.ts failures")
Task("Fix payment-processor.test.ts failures")
Task("Fix notification-queue.test.ts failures")
// All three run concurrently
When agents return:
Fix the failing tests in [path/to/test.ts]:
Failures:
1. "[test name]" — expects [X], gets [Y]
2. "[test name]" — [description]
Context:
- These are [type of] issues
- Relevant source file: [path]
- Do NOT modify: [other paths]
Your task:
1. Read the test file and understand each failure
2. Read the source file(s) to understand current behavior
3. Implement minimal fixes
4. Run tests to verify: [test command]
5. Return summary: what you found and what you changed
Works well with:
subagent-driven-development — for plan-based task dispatchexecuting-plans — feeds tasks to parallel agentsverification-before-completion — verify each agent's result independently