parallel-launch
Installation
SKILL.md
Parallel Launch
Decompose the given task into independent agent groups and execute them in broad parallel.
Process
-
Analyze the task and identify independent concerns that can run concurrently.
- Each concern must be self-contained: no shared mutable state, no ordering dependency.
- If concerns have dependencies, sequence the dependent batch after the independent batch completes.
- Consult delegation scenarios for parallelism decisions.
-
Design agent groups — for each independent concern:
- Assign a clear, scoped objective (one concern per agent).
- Select the appropriate agent type (Explore, Plan, general-purpose, or domain specialist).
- Define expected output format so results can be composed.
-
Launch all independent agents in a single tool call — never sequentially when parallel is possible.