pipeline-orchestrator
Installation
SKILL.md
Pipeline Orchestrator
Drives a feature or story through a full 4-stage pipeline by invoking coordinators via Skill() calls, each managing their own internal worker dispatch.
Hierarchy
L0: pipeline-orchestrator (this skill — sequential Skill() calls, single context)
├── Stage 0: task-coordinator — decompose into 1–8 atomic tasks
├── Stage 1: multi-agent-validator — validate plan against standards (spawns external agents)
├── Stage 2: story-executor — execute tasks (dispatches worker agents)
└── Stage 3: quality-gate — review + score; rework loop if needed
Key principle: The orchestrator invokes coordinators via Skill(). Each coordinator manages its own internal workers. The orchestrator NEVER modifies coordinator logic or dispatches workers directly.