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:
# Agent writes to shared status file
echo "COMPLETE: <task-name> - $(date)" >> .claude/cache/<batch-name>-status.txt
Related skills
More from parcadei/continuous-claude-v3
discovery-interview
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
3.3Kmath
Unified math capabilities - computation, solving, and explanation. I route to the right tool.
517github-search
Search GitHub code, repositories, issues, and PRs via MCP
517dead-code
Find unused functions and dead code in the codebase
434premortem
Identify failure modes before they occur using structured risk analysis
413agentic-workflow
Agentic Workflow Pattern
392