Skip to content
Vibecoding Guide

Superpowers Skills

Superpowers is a skill system for Claude Code. Skills are structured prompt files that give Claude a repeatable workflow for specific tasks — things like debugging, writing implementation plans, or doing a code review. Instead of you re-explaining how you want a task done every time, you invoke a skill and Claude follows the procedure defined in it.

A skill is a Markdown file with instructions. When invoked, its contents are loaded into Claude’s context and followed as a procedure. Skills can be simple (“always do X before Y”) or elaborate (multi-step workflows with decision trees).

Skills are organised into plugins. A plugin is a collection of related skills — for example, a superpowers plugin might contain skills for debugging, planning, and code review.

In Claude Code, use the Skill tool and pass the skill name:

Skill("superpowers:systematic-debugging")

Or type a slash command if the skill is registered as one:

/systematic-debugging

Available skills are listed in your session context. Claude will confirm which skill is loading before following it.

SkillWhen to use
brainstormingBefore building anything new — explores requirements and produces a design
writing-plansTurns a design into a step-by-step implementation plan
systematic-debuggingWhen you have a bug — structured root cause analysis before guessing at fixes
subagent-driven-developmentExecutes a plan by dispatching fresh subagents per task with review between each
test-driven-developmentEnforces TDD discipline when implementing features
verification-before-completionRuns checks before claiming work is done
requesting-code-reviewStructures a code review request

Without skills, the quality of Claude’s work depends on the quality of your prompt. A vague prompt produces vague work. Skills encode the “how” so you only have to specify the “what.”

A skill like systematic-debugging enforces that Claude reads the error, forms a hypothesis, checks the assumption, and only then proposes a fix — rather than jumping straight to a guess. That discipline is built into the skill, not into your prompt.

Skills are installed as plugins. The Superpowers plugin ships with a default set. You can also write your own — see Building Custom Skills.