From orchestrator-supaconductor
Automates full Evaluate-Loop for a track: detects state, dispatches planner/evaluator/executor/fixer agents, loops on failures until complete. 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 tasks from a Conductor track plan: validates environment, selects the next incomplete track, and implements it following the protocol.
/implementImplements features/code by activating specialist personas and MCP tools (Context7, Sequential, Magic, Playwright) for analysis, generation, security/QA validation, testing, and integration.
/implementImplements a feature from spec via structured workflow: understand requirements, create feature branch, design, code incrementally with tests, self-review, and PR. Outputs change summary.
/implementStarts task execution loop for active feature: reads state, validates prereqs, commits specs via git, initializes .speckit-state.json, launches coordinator.
/implementStarts task execution loop for active spec: resolves/validates spec and tasks.md, parses iteration/recovery flags, initializes .ralph-state.json, runs tasks via coordinator until complete.
/implementImplements features with parallel subagents through multi-phase workflow: discovery, architecture, coding, testing, reflection, with effort scaling and resume support.