/conductor-implement
Optional track ID (defaults to active track)
> /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
/conductor-implement
Context preview
What this command does when you run it.
Optional track ID (defaults to active track)
Command definition
conductor-implement.mdname: conductor-implement
description: "Run the full Evaluate-Loop automatically from current track state to completion"
arguments:
- name: track_id
description: "Optional track ID (defaults to active track)"
required: false
user_invocable: true
model: sonnet/conductor: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
/conductor:implement
/conductor: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 Task tool to spawn specialized agents:
Task({
subagent_type: "conductor-orchestrator",
description: "Run evaluate-loop",
prompt: "Continue the evaluate-loop for track [track-id]. Check metadata.json for current step and dispatch the correct agent."
})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
/conductor:new-track
# ... track created ...
/conductor:implement
# → PLAN → EVALUATE (with CTO review) → EXECUTE → EVALUATE → COMPLETE
# Resume interrupted work
/conductor:status # See where we are
/conductor:implement # Continue automatically
Related
- `/conductor:status` — Check current track progress
- `/conductor:new-track` — Create track manually
- `/orchestrator-supaconductor:go` — Single entry point (creates track + runs implement)
- `conductor/workflow.md` — Full evaluate-loop documentation
Read more
name: conductor-implement
description: "Run the full Evaluate-Loop automatically from current track state to completion"
arguments:
- name: track_id
description: "Optional track ID (defaults to active track)"
required: false
user_invocable: true
model: sonnet/conductor: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
/conductor:implement /conductor: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 Task tool to spawn specialized agents:
Task({
subagent_type: "conductor-orchestrator",
description: "Run evaluate-loop",
prompt: "Continue the evaluate-loop for track [track-id]. Check metadata.json for current step and dispatch the correct agent."
})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 /conductor:new-track # ... track created ... /conductor:implement # → PLAN → EVALUATE (with CTO review) → EXECUTE → EVALUATE → COMPLETE # Resume interrupted work /conductor:status # See where we are /conductor:implement # Continue automatically
Related
- `/conductor:status` — Check current track progress
- `/conductor:new-track` — Create track manually
- `/orchestrator-supaconductor:go` — Single entry point (creates track + runs implement)
- `conductor/workflow.md` — Full evaluate-loop documentation
Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills
Repo: Ibrahim-3d/orchestrator-supaconductor
Other commands on orchestrator-supaconductor.
- /board-meeting
The proposal, plan, or decision to deliberate on
Open command - /board-review
The proposal, plan, or decision to review
Open command - /brainstorm
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores requirements and design before implementation.
Open command - /brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores requirements and design before implementation.
Open command - /ceo
Your business question or topic to discuss
Open command - /close-track
Skip quality gate — use for abandoned or superseded tracks
Open command

