Coordinate structured thinking and multi-agent parallel execution for complex tasks. Use when tackling multi-step projects, planning parallel work, breaking down complex problems, coordinating specialist tasks, facing architectural decisions, or when user mentions "workflow", "orchestration", "multi-step", "coordinate", "parallel execution", "structured thinking", "break this down", "plan this out", "how should I approach", or needs help planning complex implementations.
View on GitHubjoaquimscosta/arkhe-claude-plugins
core
January 23, 2026
Select agents to install to:
npx add-skill https://github.com/joaquimscosta/arkhe-claude-plugins/blob/main/plugins/core/skills/workflow-orchestration/SKILL.md -a claude-code --skill workflow-orchestrationInstallation paths:
.claude/skills/workflow-orchestration/# Workflow Orchestration Guide users through structured thinking and recommend appropriate tools for complex tasks. ## Quick Decision | Situation | Recommendation | |-----------|----------------| | Multi-step project, full SDLC | `/develop` command | | Plan only, implement later | `/develop --plan-only` | | Resume existing plan | `/develop @path/to/plan.md` | | Single complex problem needing deep analysis | `/think` command | | Security-sensitive or high-stakes work | `/develop --validate` | | Strategic decision with long-term impact | `deep-think-partner` agent | | Simple task, clear steps | Inline guidance (no command needed) | ## When to Orchestrate Detect these signals for structured thinking: **Keyword triggers:** - "workflow", "orchestration", "coordinate", "parallel" - "multi-step", "sequential", "dependencies" - "break down", "plan this out", "how should I approach" **Context triggers:** - Architectural decisions affecting multiple components - Multi-file changes requiring coordination - Problems with unclear scope needing discovery - Tasks that benefit from specialist agents ## Orchestration Pattern When structured approach is needed: ``` 1. GATE → Is the request clear and actionable? 2. CONTEXT → What files/patterns are relevant? 3. PLAN → What tasks? Parallel vs sequential? 4. EXECUTE → Deploy specialists, maximize parallelism 5. VALIDATE → Confidence scoring (if needed) 6. REPORT → Summary with next steps ``` ## Command Reference ### `/develop <request> [flags]` Unified SDLC command with 6-phase pipeline and multi-agent orchestration. **Flags:** - `--plan-only` - Stop after Phase 2 (save plan, don't implement) - `--validate` - Enable deep validation with opus agent - `--phase=N` - Execute specific phase only - `--auto` - Autonomous mode (no checkpoints) **Best for:** Feature implementations, refactoring projects, any multi-step development task. **Resume mode:** `/develop @path/to/plan.md` loads existing plan and continues. #