npx claudepluginhub ibrahim-3d/conductor-orchestrator-superpowersWant just this skill?
Then install: npx claudepluginhub u/[userId]/[slug]
The single entry point to the Conductor system - state your goal and everything is handled automatically
This skill uses the workspace's default tool permissions.
/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
spec.mdfrom the goal - Generate
plan.mdwith DAG - Create
metadata.jsonwith v3 schema AND setsuperpower_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_enhancedflag 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
Similar Skills
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.