Orchestrator-supaconductor go
The single entry point to the Conductor system - state your goal and everything is handled automatically
install
source · Clone the upstream repo
git clone https://github.com/Ibrahim-3d/orchestrator-supaconductor
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Ibrahim-3d/orchestrator-supaconductor "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/go" ~/.claude/skills/ibrahim-3d-orchestrator-supaconductor-go && rm -rf "$T"
manifest:
skills/go/SKILL.mdsource content
/go -- Goal-Driven Entry Point
The single entry point to the entire Conductor system.
Just state your goal. The system handles everything else.
Usage
/go <your goal>
Examples
/go Add Stripe payment integration /go Fix the login bug where users get logged out /go Build a dashboard with analytics /go Refactor the asset generation to use caching
What Happens
When you invoke
/go, follow this process:
1. Goal Analysis
Parse the user's goal from
$ARGUMENTS:
- Identify the type (feature, bugfix, refactor, etc.)
- Estimate complexity
- Extract key requirements
2. Track Detection
Check
conductor/tracks.md for matching existing tracks:
- If match found: Resume that track from its current state
- If no match: Create a new track
3. For New Tracks
- Create track directory:
conductor/tracks/{goal-slug}_{date}/ - Generate
from the goalspec.md - Generate
with DAGplan.md - Create
with v3 schema AND setmetadata.json
(new tracks use superpowers by default)superpower_enhanced: true
Example metadata.json:
{ "version": 3, "track_id": "goal-slug_20260213", "type": "feature", "status": "new", "superpower_enhanced": true, "loop_state": { "current_step": "NOT_STARTED", "step_status": "NOT_STARTED" } }
4. Run the Evaluate-Loop
Invoke the conductor-orchestrator agent:
Use the conductor-orchestrator agent to run the evaluate-loop for this track.
The orchestrator will:
- Detect current step from metadata
- Check
flag to determine which agents to use:superpower_enhanced- If true (new tracks): Dispatch superpowers (orchestrator-supaconductor:writing-plans, orchestrator-supaconductor:executing-plans, orchestrator-supaconductor:systematic-debugging)
- If false/missing (legacy): Dispatch legacy loop agents (loop-planner, loop-executor, loop-fixer)
- Monitor progress and handle failures
- Complete the track or escalate if blocked
Decision Resolution
Behavior depends on
conductor/config.json → "mode":
(default) — Fully autonomous. Never stops to ask the user. All decisions resolved by agents, leads, and board."agentic"
— Pauses at decision points (ambiguity, blockers, fix limits, high-impact decisions) to ask the user."human-in-the-loop"
See
conductor/config.json for current mode. Edit to switch.
Resume Existing Work
/go # Continues the active track /go continue # Same as above