Skip to content
Development
Command

/implement

Optional track ID (defaults to active track)

From plugin
orchestrator-supaconductor
37139 skills15 agents39 commands1 hook
Install
> /plugin marketplace add Ibrahim-3d/orchestrator-supaconductor
> /plugin install orchestrator-supaconductor@ibrahim-plugins

How 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/implement

Context preview

What this command does when you run it.

Optional track ID (defaults to active track)

Command definition

implement.md
name: implement
description: "Run the full Evaluate-Loop automatically from current track state to completion"
arguments:
  - name: implement
    description: "Optional track ID (defaults to active track)"
    required: false
user_invocable: true
model: sonnet

/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

/orchestrator-supaconductor:implement
/orchestrator-supaconductor:implement my-track-id

Automated Flow

PLAN → EVALUATE PLAN → EXECUTE → EVALUATE EXECUTION
                                       │
                                  PASS → 5.5 BUSINESS DOC SYNC → COMPLETE
                                  FAIL → FIX → re-EXECUTE → re-EVALUATE (loop)

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" | 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 |

Superpower vs Legacy Detection

The orchestrator checks `metadata.json` for `superpower_enhanced: true`:

  • **If true (new tracks):** Uses `orchestrator-supaconductor:writing-plans`, `orchestrator-supaconductor:executing-plans`, `orchestrator-supaconductor:systematic-debugging`
  • **If false/missing (legacy):** Uses `loop-planner`, `loop-executor`, `loop-fixer`

Both systems use the same evaluators and quality gates.

CTO Advisor Integration

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

Agent Dispatch

Uses the run_shell_command to spawn specialized agents:

run_shell_command(claude --print "/orchestrator-supaconductor:...")

Decision Resolution (Mode-Dependent)

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.

1. **Fix Cycle Limit** — Extends to 5 attempts with alternative approaches, then completes with warnings 2. **Scope Change Needed** — Lead agents (Product, Architecture) autonomously adjust scope within spec intent 3. **Blocker** — Logs blocker, skips blocked tasks, continues with unblocked work 4. **Ambiguous Requirement** — Product Lead interprets based on spec and codebase context 5. **Critical Decision** — Board of Directors deliberates and decides autonomously

Track Completion Protocol

When execution evaluation returns PASS:

1. **Check Business Doc Sync** — If evaluation flagged business-impacting changes, sync docs 2. **Mark Track Complete** — Update `tracks.md`, `metadata.json`, `conductor/index.md` 3. **Report to User** — Summary of phases, tasks, commits

Example

# 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

Related

  • `/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 documentation
Read more
Ships withorchestrator-supaconductor

Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills

Get the whole plugin