install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/methodologies/ccpm/skills/parallel-orchestration" ~/.claude/skills/a5c-ai-babysitter-parallel-orchestration && rm -rf "$T"
manifest:
library/methodologies/ccpm/skills/parallel-orchestration/SKILL.mdsource content
Parallel Orchestration
Coordinate multiple specialized agents across parallel work streams with quality gates and conflict resolution.
Agents
- Database Engineer -
database-engineer - API Developer -
api-developer - UI Developer -
ui-developer - Test Engineer -
test-engineer - Documentation Writer -
documentation-writer
Workflow
- Prepare execution plan with stream batches
- Dispatch specialized agents per stream (ctx.parallel.all)
- Execute tasks sequentially within each stream
- Quality gate after each task with convergence loop (max 3 iterations)
- Check for cross-stream conflicts
- Resolve conflicts if found
- Run integration verification
- Merge stream results
Inputs
- Tasks from decomposition phasetasks
- Work stream definitionsstreams
- Minimum quality score (default: 80)qualityThreshold
- Maximum parallel streams (default: 5)maxParallel
- GitHub repo for progress sync (optional)githubRepo
Outputs
- Per-stream execution results
- Integration verification report
- Conflict detection and resolution report
- Merge result
Agent Dispatch (5-12 parallel agents per issue)
Agents are dispatched based on stream type:
->databasedatabase-engineer
->apiapi-developer
->uiui-developer
->testingtest-engineer
->docsdocumentation-writer
->infrastructurearchitect
Process Files
- Standalone parallel executionccpm-parallel-execution.js
- Phase 5 of full lifecycleccpm-orchestrator.js