/orchestrate
Wire Commands, Agents, and Skills together for complex features. Use when building features that need research, planning, and implementation phases.
One skill from pro-workflow.
shell
$ npx -y skills add rohitg00/pro-workflow --skill orchestrate --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/orchestrate
Context preview
The summary Claude sees to decide when to auto-load this skill.
Wire Commands, Agents, and Skills together for complex features. Use when building features that need research, planning, and implementation phases.
Stats
Stars2,638
Forks255
LanguageJavaScript
SKILL.md
orchestrate.SKILL.md
--- name: orchestrate description: Wire Commands, Agents, and Skills together for complex features. Use when building features that need research, planning, and implementation phases. user-invocable: true --- # Orchestrate - Multi-Phase Feature Development Build features through structured phases with validation gates. ## The Pattern ```text /develop <feature> │ ├── Phase 1: Research (orchestrator agent) │ └── Score confidence → GO/HOLD │ ├── Phase 2: Plan (orchestrator agent) │ └── Present plan → wait for approval │ ├── Phase 3: Implement (orchestrator agent) │ └── Execute plan → quality gates │ └── Phase 4: Review (reviewer agent) └── Code review → commit ``` ## Usage When asked to build a feature: 1. **Start with research**: Delegate to the orchestrator agent or scout agent to explore the codebase 2. **Wait for GO/HOLD**: Don't proceed if confidence is below 70 3. **Present a plan**: List all files to change, the approach, and risks 4. **Get approval**: Never implement without explicit "proceed"
