Spawn Parallel Skill
Pattern for spawning and coordinating parallel subagents.
When to Load This Skill
- You have multiple independent tasks
- Tasks don't depend on each other's output
- You want to maximize concurrency
Spawning Pattern
1. Identify Independent Tasks
Tasks are independent if:
- No data dependencies between them
- No file conflicts (different files or read-only)
- Can complete in any order
2. Prepare Contexts
Each subagent needs minimal, focused context:
[Description truncada. Veja o README completo no GitHub.]