go

The single entry point to the Conductor system - state your goal and everything is handled automatically

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "go" with this command: npx skills add ibrahim-3d/conductor-orchestrator-superpowers/ibrahim-3d-conductor-orchestrator-superpowers-go

/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

  1. Create track directory: conductor/tracks/{goal-slug}_{date}/
  2. Generate spec.md from the goal
  3. Generate plan.md with DAG
  4. Create metadata.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"
  }
}

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 superpower_enhanced flag to determine which agents to use:
    • If true (new tracks): Dispatch superpowers (supaconductor:writing-plans, supaconductor:executing-plans, 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

Escalation Points

Stop and ask user when:

  • Goal is ambiguous
  • Multiple interpretations possible
  • Scope conflicts with existing tracks
  • Board rejects the plan
  • Fix cycle exceeds 3 iterations

Resume Existing Work

/go                    # Continues the active track
/go continue           # Same as above

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

eval-ui-ux

No summary provided by upstream source.

Repository SourceNeeds Review
General

executing-plans

No summary provided by upstream source.

Repository SourceNeeds Review
General

systematic-debugging

No summary provided by upstream source.

Repository SourceNeeds Review