/orchestrate
Run a multi-step workflow by breaking a complex task into coordinated sub-tasks.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command 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
What this command does when you run it.
Run a multi-step workflow by breaking a complex task into coordinated sub-tasks.
Command definition
orchestrate.mdRun a multi-step workflow by breaking a complex task into coordinated sub-tasks.
Steps
1. Parse the workflow specification from the argument:
- Accept a natural language description of the end goal.
- Or accept a structured plan with explicit steps.
2. Decompose into ordered sub-tasks:
- Identify dependencies between tasks (which must complete before others start).
- Determine which tasks can run in parallel.
- Estimate complexity of each task (small, medium, large).
3. For each sub-task, define:
- Clear objective and success criteria.
- Input requirements (files, data, prior task outputs).
- Expected output (files created, changes made, results).
- Verification method (test, manual check, build success).
4. Execute tasks in dependency order:
- Mark each task as pending, in-progress, or complete.
- Capture output and errors from each step.
- If a task fails, determine if downstream tasks should be skipped or can proceed.
5. After all tasks complete, run a final verification:
- Build passes.
- Tests pass.
- No regressions introduced.
6. Report the full execution summary.
Format
Workflow: <description>
Tasks: <total> (<completed>/<total>)
| # | Task | Status | Duration | Notes |
|---|------|--------|----------|-------|
| 1 | <task> | done | 2m | <notes> |
| 2 | <task> | done | 5m | <notes> |
| 3 | <task> | failed | 1m | <error> |
Overall: <success/partial/failed>
Duration: <total time>
Rules
- Never execute destructive operations (delete, force push) without explicit confirmation.
- If a critical task fails, stop and report rather than continuing blindly.
- Keep each sub-task focused and independently verifiable.
- Save progress after each completed task so work is not lost on failure.
- Limit workflow to 10 tasks maximum; break larger workflows into phases.
Read more
Run a multi-step workflow by breaking a complex task into coordinated sub-tasks.
Steps
1. Parse the workflow specification from the argument:
- Accept a natural language description of the end goal.
- Or accept a structured plan with explicit steps.
2. Decompose into ordered sub-tasks:
- Identify dependencies between tasks (which must complete before others start).
- Determine which tasks can run in parallel.
- Estimate complexity of each task (small, medium, large).
3. For each sub-task, define:
- Clear objective and success criteria.
- Input requirements (files, data, prior task outputs).
- Expected output (files created, changes made, results).
- Verification method (test, manual check, build success).
4. Execute tasks in dependency order:
- Mark each task as pending, in-progress, or complete.
- Capture output and errors from each step.
- If a task fails, determine if downstream tasks should be skipped or can proceed.
5. After all tasks complete, run a final verification:
- Build passes.
- Tests pass.
- No regressions introduced.
6. Report the full execution summary.
Format
Workflow: <description> Tasks: <total> (<completed>/<total>) | # | Task | Status | Duration | Notes | |---|------|--------|----------|-------| | 1 | <task> | done | 2m | <notes> | | 2 | <task> | done | 5m | <notes> | | 3 | <task> | failed | 1m | <error> | Overall: <success/partial/failed> Duration: <total time>
Rules
- Never execute destructive operations (delete, force push) without explicit confirmation.
- If a critical task fails, stop and report rather than continuing blindly.
- Keep each sub-task focused and independently verifiable.
- Save progress after each completed task so work is not lost on failure.
- Limit workflow to 10 tasks maximum; break larger workflows into phases.
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Other commands on rohitg00-claude-code-toolkit.
- /adr
Write an Architecture Decision Record documenting a significant technical decision.
Open command - /design-review
Conduct a structured design review of a module, feature, or system component.
Open command - /diagram
Generate Mermaid diagrams from codebase analysis or description.
Open command - /migrate
Plan and execute a framework or library migration incrementally.
Open command - /plan
Create a structured implementation plan for the requested feature or change.
Open command - /refactor
Perform a systematic refactoring of the specified code area.
Open command

