skills/go/SKILL.md
The single entry point to the Conductor system - state your goal and everything is handled automatically
npx skillsauth add Ibrahim-3d/orchestrator-supaconductor goInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The single entry point to the entire Conductor system.
Just state your goal. The system handles everything else.
/go <your goal>
/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
When you invoke /go, follow this process:
Parse the user's goal from $ARGUMENTS:
Check conductor/tracks.md for matching existing tracks:
conductor/tracks/{goal-slug}_{date}/spec.md from the goalplan.md with DAGmetadata.json with v3 schema AND set superpower_enhanced: true (new tracks use superpowers by default)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"
}
}
Invoke the conductor-orchestrator agent:
Use the conductor-orchestrator agent to run the evaluate-loop for this track.
The orchestrator will:
superpower_enhanced flag to determine which agents to use:
Behavior depends on conductor/config.json → "mode":
"agentic" (default) — Fully autonomous. Never stops to ask the user. All decisions resolved by agents, leads, and board."human-in-the-loop" — Pauses at decision points (ambiguity, blockers, fix limits, high-impact decisions) to ask the user.See conductor/config.json for current mode. Edit to switch.
/go # Continues the active track
/go continue # Same as above
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
data-ai
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
tools
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions