dispatching-parallel-agents
Installation
SKILL.md
Dispatching Parallel Agents
Overview
Parallel agent dispatching executes multiple independent tasks simultaneously by leveraging subagents. This skill should be invoked when you have three or more independent tasks that can run concurrently without sharing state or sequential dependencies.
Core Principles
- Independence: Tasks must not depend on each other's output
- Clear Boundaries: Each subagent should have focused, self-contained work
- Result Aggregation: Plan how to combine results after parallel execution
- Resource Management: Consider parallel execution limits
Preparation Checklist
- Identify all tasks and verify they are independent
- Break down work into focused subtasks
- Define what each subagent needs to know
- Plan result integration approach