parallel-agents
Installation
SKILL.md
Parallel Agent Orchestration
When launching multiple agents in parallel, follow this pattern to avoid context bloat.
Core Principles
- No TaskOutput calls - TaskOutput returns full agent output, bloating context
- Run in background - Always use
run_in_background: true - File-based confirmation - Agents write status to files, not return values
- Append, don't overwrite - Multiple agents can write to same status file
Output Patterns
Simple Confirmation (parallel batch work)
For tasks where agents just need to confirm completion: