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/automaker/skills/agent-dispatch" ~/.claude/skills/a5c-ai-babysitter-agent-dispatch && rm -rf "$T"
manifest:
library/methodologies/automaker/skills/agent-dispatch/SKILL.mdsource content
Agent Dispatch
Build dependency-aware, batched dispatch queues for parallel agent execution.
Agent
Feature Planner -
automaker-feature-planner
Workflow
- Analyze inter-feature dependencies
- Build directed acyclic graph (DAG)
- Generate topologically sorted execution order
- Group features into batches respecting concurrency limits
- Ensure no batch contains interdependent features
- Assign agent types to each feature
Inputs
- Project nameprojectName
- Feature plans in dependency orderorderedPlans
- Maximum concurrent agentsmaxParallel
- Feature dependency graphdependencyGraph
Outputs
- Batched dispatch queue with agent assignments
Process Files
- Stage 5automaker-feature-pipeline.js
- Phase 3 (batching)automaker-orchestrator.js