A Claude Code skill that routes between GSD (project management) and Superpowers (engineering discipline) systems, making them work as one coherent workflow.
GSD and Superpowers operate at different layers and complement each other, but without guidance they conflict — double-planning, competing subagent models, overlapping design capture.
A single routing decision at task start based on one question: does .planning/ exist?
| Scenario | System | Entry Point |
|---|---|---|
| New project (greenfield) | GSD | /gsd:new-project |
| Brownfield onboarding | GSD | /gsd:map-codebase → /gsd:new-project |
| Feature in active GSD project | GSD | /gsd:discuss-phase → plan → execute |
| Quick task in GSD project | GSD | /gsd:quick |
| Standalone feature (no GSD) | SP | brainstorming → writing-plans → subagent-driven-dev |
| Bug fix (any context) | SP first | systematic-debugging always first |
| Code review | SP | requesting-code-review (GSD has no review) |
| Resume work | Either | .planning/ exists → GSD, otherwise SP |
- GSD = macro layer — project → milestones → phases → plans → state
- Superpowers = micro layer — TDD, debugging, verification, code review per task
GSD orchestrates what to build. Superpowers enforce how to build it correctly.
- Plan location: GSD uses
.planning/phases/, SP usesdocs/plans/. Never mix. - Brainstorming:
discuss-phasefor GSD work,brainstormingfor standalone only. - Subagent execution: GSD executors OR SP subagent-driven-dev. Never nested.
- Debugging: SP
systematic-debuggingruns first for all bugs. - Code review: Always run after GSD
verify-work— fills GSD's missing review step.
# Clone into your skills directory
git clone https://github.com/mattjaikaran/unified-workflow.git ~/.claude/skills/unified-workflowunified-workflow/
├── SKILL.md # Routing logic (<500 words)
└── references/
├── decision-flowchart.md # Visual decision tree + anti-patterns
├── integration-rules.md # GSD executor + SP discipline protocols
└── unified-workflows.md # 7 step-by-step scenario guides
- Superpowers skills installed
- GSD skills installed
MIT