From orchestrator-supaconductor
Fully automates a multi-step Evaluate-Loop workflow: detects current state, dispatches specialized agents, and continues until track completion. Accepts an optional track ID.
How this command is triggered — by the user, by Claude, or both
Slash command
/orchestrator-supaconductor:implementsonnetThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /orchestrator-supaconductor:implement — Automated Evaluate-Loop Fully automates the Evaluate-Loop workflow. Detects current step, dispatches the correct agent, reads the result, and continues until the track is complete. **Runs fully autonomously — never stops to ask the user questions.** ## Usage ## Automated Flow ## Step Detection Logic | State | Condition | Action | |-------|-----------|--------| | **No plan** | `plan.md` doesn't exist or has no tasks | Dispatch planner (superpowers or legacy) | | **Plan exists, not evaluated** | Tasks exist but no "Plan Evaluation Report" | D...
Fully automates the Evaluate-Loop workflow. Detects current step, dispatches the correct agent, reads the result, and continues until the track is complete. Runs fully autonomously — never stops to ask the user questions.
/orchestrator-supaconductor:implement
/orchestrator-supaconductor:implement my-track-id
PLAN → EVALUATE PLAN → EXECUTE → EVALUATE EXECUTION
│
PASS → 5.5 BUSINESS DOC SYNC → COMPLETE
FAIL → FIX → re-EXECUTE → re-EVALUATE (loop)
| State | Condition | Action |
|---|---|---|
| No plan | plan.md doesn't exist or has no tasks | Dispatch planner (superpowers or legacy) |
| Plan exists, not evaluated | Tasks exist but no "Plan Evaluation Report" | Dispatch plan evaluator (includes CTO review for technical tracks) |
| Plan evaluated FAIL | Report says FAIL | Dispatch planner to revise |
| Plan evaluated PASS, tasks pending | Has [ ] tasks | Dispatch executor (superpowers or legacy) |
| All tasks done, not evaluated | All [x], no "Execution Evaluation Report" | Dispatch execution evaluator |
| Execution evaluated FAIL | Report says FAIL with fix list | Dispatch fixer (superpowers or legacy) |
| Execution evaluated PASS | All checks passed | Run Step 5.5 Business Doc Sync → Mark complete |
The orchestrator checks metadata.json for superpower_enhanced: true:
orchestrator-supaconductor:writing-plans, orchestrator-supaconductor:executing-plans, orchestrator-supaconductor:systematic-debuggingloop-planner, loop-executor, loop-fixerBoth systems use the same evaluators and quality gates.
For technical tracks (architecture, integrations, infrastructure, APIs, databases), plan evaluation automatically includes CTO technical review:
Plan created → loop-plan-evaluator dispatches:
1. Standard plan checks (scope, overlap, dependencies, clarity)
2. cto-plan-reviewer (for technical tracks)
3. Aggregate results → PASS/FAIL
Technical track keywords: architecture, system design, integration, API, database, schema, migration, infrastructure, scalability, performance, security, authentication, deployment, monitoring
Uses the run_shell_command to spawn specialized agents:
run_shell_command(claude --print "/orchestrator-supaconductor:...")
Behavior depends on conductor/config.json → "mode". In "agentic" mode (default), the loop never pauses. In "human-in-the-loop" mode, the loop pauses at decision points.
When execution evaluation returns PASS:
tracks.md, metadata.json, conductor/index.md# Start a new track and run to completion
/orchestrator-supaconductor:new-track
# ... track created ...
/orchestrator-supaconductor:implement
# → PLAN → EVALUATE (with CTO review) → EXECUTE → EVALUATE → COMPLETE
# Resume interrupted work
/orchestrator-supaconductor:status # See where we are
/orchestrator-supaconductor:implement # Continue automatically
/orchestrator-supaconductor:status — Check current track progress/orchestrator-supaconductor:new-track — Create track manually/orchestrator-supaconductor:go — Single entry point (creates track + runs implement)conductor/workflow.md — Full evaluate-loop documentationnpx claudepluginhub ibrahim-3d/orchestrator-supaconductor --plugin orchestrator-supaconductor/implementExecutes the next incomplete track from a Conductor spec-driven development framework, or a specified track by name. Validates environment setup before proceeding.
/implementImplements features with persona-driven code generation, framework detection, MCP tool coordination, and integrated testing validation.
/implementImplements a feature from specification through a structured development workflow: understand requirements, create branch, design, incrementally implement with tests, self-review, and create a PR.
/implementExecutes a task execution loop driven by a spec and tasks.md file. Supports configurable max iterations per task, global iteration limit, and recovery mode for automatic fix generation.
/implementStarts the task execution loop for a specified feature, validating prerequisites, parsing arguments (--max-task-iterations, --recovery-mode), and initializing execution state.
/implementOrchestrates parallel subagents for full-stack feature implementation across backend, frontend, testing, and security, with worktree isolation and resume support.