From pro-workflow
Guides multi-phase feature development with research, planning, implementation, and review phases. Use for complex features touching >5 files or requiring architecture decisions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pro-workflow:orchestrateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Build features through structured phases with validation gates.
Build features through structured phases with validation gates.
/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
When asked to build a feature:
| Phase | Agent | Why |
|---|---|---|
| Research | scout (background, worktree) | Non-blocking exploration |
| Plan | orchestrator (opus, memory) | Deep reasoning, pattern recall |
| Implement | orchestrator (opus, memory) | Full tool access |
| Review | reviewer (read + bash) | Security and quality focus |
| Debug | debugger (opus, memory) | Systematic investigation |
npx claudepluginhub matrixy/pro-workflow5plugins reuse this skill
First indexed Jun 4, 2026
Guides multi-phase feature development with research, planning, implementation, and review phases. Use for complex features touching >5 files or requiring architecture decisions.
Orchestrates structured feature development in 5 phases (Understand, Clarify, Design, Implement, Complete) using parallel agent delegation via codeagent-wrapper, with optional git worktree isolation.
Implements features using parallel subagents with scope control, reflection, and MCP servers for memory/context. Activates on implement/build/create requests in JS/TS projects.