Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Use at the start of any task to route between Superpowers skills and GSD commands based on project state, task scope, and context signals. Fires before other skills when both systems are installed.
.claude/skills/coco-research-workflow-routing/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 78% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 53% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 103% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 71% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 66% | 0% |
Announce at start: "Workflow Routing skill activated."
Route every task to the right toolchain. Superpowers handles task-level quality (TDD, debugging, design, review). GSD handles project-level orchestration (phases, milestones, persistent state). They are complementary — never competing.
<HARD-GATE> Check routing BEFORE invoking any other skill or GSD command. This skill fires first. </HARD-GATE>
Check the current working directory:
dotdigraph detect { ".planning/ exists?" [shape=diamond]; "ROADMAP.md exists?" [shape=diamond]; "GSD ACTIVE" [shape=box, style=filled, fillcolor=lightblue]; "GSD NOT ACTIVE" [shape=box, style=filled, fillcolor=lightyellow]; ".planning/ exists?" -> "ROADMAP.md exists?" [label="yes"]; ".planning/ exists?" -> "GSD NOT ACTIVE" [label="no"]; "ROADMAP.md exists?" -> "GSD ACTIVE" [label="yes"]; "ROADMAP.md exists?" -> "GSD NOT ACTIVE\n(stale or pre-roadmap)" [label="no"]; }
GSD active signals: .planning/PROJECT.md, .planning/ROADMAP.md, .planning/STATE.md all present.
dotdigraph route { "Task received" [shape=doublecircle]; "GSD active?" [shape=diamond]; "Task in current phase scope?" [shape=diamond]; "Scope: multi-phase?" [shape=diamond]; "Use GSD commands" [shape=box, style=filled, fillcolor=lightblue]; "Use /gsd:quick" [shape=box, style=filled, fillcolor=lightcyan]; "Suggest /gsd:new-project" [shape=box, style=filled, fillcolor=lightblue]; "Use Superpowers skills" [shape=box, style=filled, fillcolor=lightyellow]; "Task received" -> "GSD active?"; "GSD active?" -> "Task in current phase scope?" [label="yes"]; "GSD active?" -> "Scope: multi-phase?" [label="no"]; "Task in current phase scope?" -> "Use GSD commands" [label="yes"]; "Task in current phase scope?" -> "Use /gsd:quick" [label="no, small/unrelated"]; "Scope: multi-phase?" -> "Suggest /gsd:new-project" [label="yes"]; "Scope: multi-phase?" -> "Use Superpowers skills" [label="no"]; }
| Signal | Indicates | Route | |--------|-----------|-------| | "build app", "create platform", "new project", "implement system" | Multi-phase | GSD | | "phase", "milestone", "roadmap", "epic", "release" | Multi-phase | GSD | | 6+ features, 2+ weeks, architectural decisions needed | Multi-phase | GSD | | "fix bug", "add button", "update function", "refactor method" | Single-session | Superpowers | | "quick fix", "hotfix", "one more thing" | Small/ad-hoc | Superpowers or /gsd:quick if GSD active | | Unknown scope, user unsure | Undetermined | /brainstorming first to scope, then decide |
/brainstorming ← Superpowers: design before planning
↓
/gsd:new-project ← GSD: project structure + roadmap
↓
/gsd:plan-phase N ← GSD: detailed phase plan
↓
/gsd:execute-phase N ← GSD: runs tasks with atomic commits
├── /systematic-debugging ← Superpowers: if bug during execution
└── /test-driven-development ← Superpowers: TDD within each task
↓
/requesting-code-review ← Superpowers: review before moving on
↓
/gsd:verify-work N ← GSD: UAT validation
↓
/verification-before-completion ← Superpowers: evidence-based "done"
↓
/gsd:progress ← GSD: route to next phase/brainstorming ← Explore intent, produce spec
↓
/writing-plans ← Break into TDD tasks
↓
/executing-plans ← Run tasks sequentially
OR /subagent-driven-development ← Run tasks via parallel subagents
├── /systematic-debugging ← If issues arise
└── /test-driven-development ← TDD per task
↓
/requesting-code-review ← Review before done
↓
/verification-before-completion ← Prove it works
↓
/finishing-a-development-branch ← Merge, PR, or cleanupdotdigraph debug { "Bug reported" [shape=doublecircle]; "GSD active?" [shape=diamond]; "Bug related to current phase?" [shape=diamond]; "Will span multiple sessions?" [shape=diamond]; "/gsd:debug" [shape=box, style=filled, fillcolor=lightblue]; "/systematic-debugging" [shape=box, style=filled, fillcolor=lightyellow]; "Bug reported" -> "GSD active?"; "GSD active?" -> "Bug related to current phase?" [label="yes"]; "GSD active?" -> "Will span multiple sessions?" [label="no"]; "Bug related to current phase?" -> "/gsd:debug" [label="yes"]; "Bug related to current phase?" -> "/systematic-debugging\nthen /gsd:quick to commit" [label="no"]; "Will span multiple sessions?" -> "/gsd:debug" [label="yes, need persistence"]; "Will span multiple sessions?" -> "/systematic-debugging" [label="no, fix it now"]; }
dotdigraph plan { "Planning requested" [shape=doublecircle]; "GSD active?" [shape=diamond]; "Feature in roadmap?" [shape=diamond]; "/gsd:plan-phase N" [shape=box, style=filled, fillcolor=lightblue]; "/gsd:add-phase or /gsd:quick" [shape=box, style=filled, fillcolor=lightcyan]; "/brainstorming then /writing-plans" [shape=box, style=filled, fillcolor=lightyellow]; "Planning requested" -> "GSD active?"; "GSD active?" -> "Feature in roadmap?" [label="yes"]; "GSD active?" -> "/brainstorming then /writing-plans" [label="no"]; "Feature in roadmap?" -> "/gsd:plan-phase N" [label="yes, phase N"]; "Feature in roadmap?" -> "/gsd:add-phase or /gsd:quick" [label="no"]; }
During /brainstorming, if scope grows beyond single-session:
Detection:
- 5+ independent subsystems identified
- 2+ weeks estimated work
- Multiple architectural decisions needed
- User says "this is bigger than I thought"
Action:
"This needs GSD's phase structure for persistence across sessions.
Ready to initialize /gsd:new-project with the spec we just brainstormed?"
→ Convert brainstorming output into GSD project input
→ User confirms escalationUser wants Superpowers for a large project: > "This sounds like it needs 5+ phases and multiple sessions. GSD would give you persistent state and milestone tracking. Want to use /gsd:new-project instead?"
User wants GSD for a tiny task: > "This is small enough for a single session — GSD's ceremony would slow us down. Let's use /brainstorming → /writing-plans → /executing-plans instead."
Always respect the user's final choice. Suggest, don't force.
/brainstorming before creative work — regardless of GSD or Superpowers/verification-before-completion before claiming done — no exceptions/requesting-code-review after significant implementation — works in both contexts/test-driven-development when writing code — embedded discipline, not optional/systematic-debugging before proposing fixes — root cause first| Task | GSD Active | No GSD | |------|-----------|--------| | Design a feature | /brainstorming → /gsd:plan-phase | /brainstorming → /writing-plans | | Execute a plan | /gsd:execute-phase N | /executing-plans or /subagent-driven-development | | Fix a bug (small) | /gsd:quick | /systematic-debugging | | Fix a bug (complex) | /gsd:debug | /systematic-debugging | | Review code | /requesting-code-review | /requesting-code-review | | Verify work | /gsd:verify-work N | /verification-before-completion | | Check progress | /gsd:progress | N/A (session-scoped) | | Resume paused work | /gsd:resume-work | Re-read plan file | | Ad-hoc task | /gsd:quick | Direct Superpowers workflow | | Start new project | /gsd:new-project | /brainstorming → /writing-plans |
| Symptom | Problem | Fix | |---------|---------|-----| | Using /writing-plans when .planning/ exists | Bypassing GSD's plan structure | Use /gsd:plan-phase instead | | Using /gsd:new-project for a 1-hour task | Overkill, ceremony slows you down | Use Superpowers workflow | | Skipping /brainstorming because "it's obvious" | Hidden assumptions will bite you | Brainstorm first, always | | Fixing bugs without /systematic-debugging | Guessing instead of investigating | Root cause first | | Claiming "done" without verification evidence | No proof = no done | Run /verification-before-completion | | Using Superpowers for multi-week work | Context lost between sessions | Escalate to GSD | | Ignoring stale GSD project in directory | .planning/ exists for a reason | Run /gsd:progress to check state |
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-06 | pass→pass | 11,173 | 5,117 | -54% | 1 | 1 | 0% | 989 | 3,436 | +247% | 0 | 0 | — |
case-07 | fail→pass | 12,195 | 11,767 | -4% | 1 | 1 | 0% | 2,131 | 3,801 | +78% | 0 | 0 | — |
case-08 | fail→pass | 15,534 | 13,869 | -11% | 1 | 1 | 0% | 2,742 | 4,194 | +53% | 0 | 0 | — |
case-14 | fail→pass | 10,850 | 11,143 | +3% | 1 | 1 | 0% | 1,728 | 3,502 | +103% | 0 | 0 | — |
case-01 | fail→fail | 14,145 | 8,049 | -43% | 1 | 1 | 0% | 2,399 | 2,847 | +19% | 0 | 0 | — |
case-02 | fail→fail | 15,346 | 8,796 | -43% | 1 | 1 | 0% | 229 | 2,949 | +1188% | 0 | 0 | — |
case-03 | fail→fail | 21,148 | 3,627 | -83% | 1 | 1 | 0% | 2,694 | 3,027 | +12% | 0 | 0 | — |
case-04 | fail→pass | 12,588 | 10,403 | -17% | 1 | 1 | 0% | 2,113 | 3,603 | +71% | 0 | 0 | — |
case-05 | fail→fail | 10,680 | 3,949 | -63% | 1 | 1 | 0% | 1,002 | 3,124 | +212% | 0 | 0 | — |
case-09 | fail→fail | 8,680 | 9,247 | +7% | 1 | 1 | 0% | 1,328 | 3,056 | +130% | 0 | 0 | — |
case-10 | fail→pass | 16,330 | 12,159 | -26% | 1 | 1 | 0% | 2,296 | 3,818 | +66% | 0 | 0 | — |
case-11 | fail→pass | 12,826 | 8,946 | -30% | 1 | 1 | 0% | 1,373 | 3,205 | +133% | 0 | 0 | — |
case-12 | pass→pass | 11,580 | 8,502 | -27% | 1 | 1 | 0% | 1,021 | 3,066 | +200% | 0 | 0 | — |
case-13 | fail→pass | 15,309 | 5,377 | -65% | 1 | 1 | 0% | 1,568 | 3,519 | +124% | 0 | 0 | — |
case-15 | fail→pass | 19,033 | 14,174 | -26% | 1 | 1 | 0% | 2,039 | 4,125 | +102% | 0 | 0 | — |
case-16 | fail→pass | 15,017 | 12,315 | -18% | 1 | 1 | 0% | 2,364 | 3,910 | +65% | 0 | 0 | — |
case-17 | fail→pass | 25,476 | 13,482 | -47% | 1 | 1 | 0% | 3,329 | 4,149 | +25% | 0 | 0 | — |
case-18 | fail→pass | 11,705 | 7,359 | -37% | 1 | 1 | 0% | 1,977 | 3,846 | +95% | 0 | 0 | — |
case-19 | fail→pass | 11,201 | 14,443 | +29% | 1 | 1 | 0% | 1,645 | 4,075 | +148% | 0 | 0 | — |
case-20 | pass→pass | 16,030 | 14,986 | -7% | 1 | 1 | 0% | 2,042 | 4,081 | +100% | 0 | 0 | — |
case-21 | pass→fail | 18,091 | 10,286 | -43% | 1 | 1 | 0% | 2,470 | 4,439 | +80% | 0 | 0 | — |
case-22 | pass→fail | 13,286 | 14,696 | +11% | 1 | 1 | 0% | 2,227 | 4,657 | +109% | 0 | 0 | — |
case-23 | pass→pass | 8,656 | 12,480 | +44% | 1 | 1 | 0% | 1,656 | 3,757 | +127% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted, and 22 counted toward the lift figure. The other 1 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +43 percentage points is the difference between those two pass rates over the 22 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.