Delegates to orchestration skills for parallel multi-agent workflows via tmux worktrees and persistent loops, producing merged reports, security summaries, and control-plane snapshots.
From everything-claude-codenpx claudepluginhub sandaruwanweerawardhana/claude-code/orchestrateDelegates to orchestration skills for parallel multi-agent workflows via tmux worktrees and persistent loops, producing merged reports, security summaries, and control-plane snapshots.
/orchestrateGenerates test orchestration configs for staged workflows with dependencies, parallel execution, smart selection of affected tests, retries, and CI/CD optimization.
/orchestrateDecomposes complex tasks into sub-tasks with dependency management, executes workflows sequentially or in parallel, tracks progress, and reports via table summary.
/orchestrateOrchestrates agent teams to execute complex requests: analyzes into steps, runs with verification, auto-retries failures up to 5x per step, escalates to user if needed, and reports outcomes.
/orchestrateOrchestrates parallel task execution from prompt_plan.md using Agent Teams API, analyzing dependencies and running domain-specific build/test/lint. Supports --type, --parallel, --dry-run flags.
/orchestrateRoutes arguments to workflow orchestration subcommands: interactive menu, help, docs, examples, templates, or inline syntax execution with visual feedback.
Use this only if you still invoke /orchestrate. The maintained orchestration guidance lives in skills/dmux-workflows/SKILL.md and skills/autonomous-agent-harness/SKILL.md.
dmux-workflows for parallel panes, worktrees, and multi-agent splits.autonomous-agent-harness for longer-running loops, governance, scheduling, and control-plane style execution.$ARGUMENTS
Apply the orchestration skills instead of maintaining a second workflow spec here.
dmux-workflows for split/parallel execution.autonomous-agent-harness when the user is really asking for persistent loops, governance, or operator-layer behavior.[List all files modified]
[Test pass/fail summary]
[Security findings]
[SHIP / NEEDS WORK / BLOCKED]
## Parallel Execution
For independent checks, run agents in parallel:
```markdown
### Parallel Phase
Run simultaneously:
- code-reviewer (quality)
- security-reviewer (security)
- architect (design)
### Merge Results
Combine outputs into single report
For external tmux-pane workers with separate git worktrees, use node scripts/orchestrate-worktrees.js plan.json --execute. The built-in orchestration pattern stays in-process; the helper is for long-running or cross-harness sessions.
When workers need to see dirty or untracked local files from the main checkout, add seedPaths to the plan file. ECC overlays only those selected paths into each worker worktree after git worktree add, which keeps the branch isolated while still exposing in-flight local scripts, plans, or docs.
{
"sessionName": "workflow-e2e",
"seedPaths": [
"scripts/orchestrate-worktrees.js",
"scripts/lib/tmux-worktree-orchestrator.js",
".claude/plan/workflow-e2e-test.json"
],
"workers": [
{ "name": "docs", "task": "Update orchestration docs." }
]
}
To export a control-plane snapshot for a live tmux/worktree session, run:
node scripts/orchestration-status.js .claude/plan/workflow-visual-proof.json
The snapshot includes session activity, tmux pane metadata, worker states, objectives, seeded overlays, and recent handoff summaries in JSON form.
When the workflow spans multiple sessions, worktrees, or tmux panes, append a control-plane block to the final handoff:
CONTROL PLANE
-------------
Sessions:
- active session ID or alias
- branch + worktree path for each active worker
- tmux pane or detached session name when applicable
Diffs:
- git status summary
- git diff --stat for touched files
- merge/conflict risk notes
Approvals:
- pending user approvals
- blocked steps awaiting confirmation
Telemetry:
- last activity timestamp or idle signal
- estimated token or cost drift
- policy events raised by hooks or reviewers
This keeps planner, implementer, reviewer, and loop workers legible from the operator surface.
$ARGUMENTS:
feature <description> - Full feature workflowbugfix <description> - Bug fix workflowrefactor <description> - Refactoring workflowsecurity <description> - Security review workflowcustom <agents> <description> - Custom agent sequence/orchestrate custom "architect,tdd-guide,code-reviewer" "Redesign caching layer"