Claude-skill-registry agent-run-orchestrator
Run section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agent-run-orchestrator" ~/.claude/skills/majiayu000-claude-skill-registry-agent-run-orchestrator && rm -rf "$T"
manifest:
skills/data/agent-run-orchestrator/SKILL.mdsource content
Run Orchestrator
Invoke section orchestrators to coordinate complex development workflows.
When to Use
- Starting work on new section
- Coordinating multiple parallel components
- Managing complex workflows
- Need hierarchical task coordination
Quick Reference
# Run orchestrator for section ./scripts/run_orchestrator.sh foundation # Monitor section progress ./scripts/monitor_section_progress.sh
Orchestrator Workflow
- Review Plans - Understand section specifications
- Break Down - Divide into manageable components
- Delegate - Assign to appropriate design/specialist agents
- Monitor - Track progress and blockers
- Integrate - Coordinate results
- Escalate - Handle blocking issues
Hierarchy
Section Orchestrator (L1) ↓ delegates to Module Design Agent (L2) ↓ delegates to Component Specialist (L3) ↓ delegates to Implementation Engineer (L4)
Orchestrator Levels
L0: Chief Architect - Strategic architecture decisions
L1: Section Orchestrators
- Foundation Orchestrator
- Shared Library Orchestrator
- Tooling Orchestrator
- Paper Implementation Orchestrator
- CI/CD Orchestrator
- Agentic Workflows Orchestrator
L2: Module Design Agents - Coordinate modules within sections
Agent Hierarchy Context
Orchestrators are the coordination hub between high-level planning and implementation teams. They decompose work from section level to component level, enabling parallel development.
References
- Complete orchestrator structure/agents/hierarchy.md
- Coordination patterns/agents/delegation-rules.md
- Orchestrator configurations.claude/agents/