# Claude Code Superpowers Plugin: Guide & Setup (2026)

> The Claude Code Superpowers plugin turns Claude into a disciplined engineer: brainstorm, spec, worktrees, and TDD. What it is, how to install and use it.

Source: https://designrevision.com/blog/claude-code-superpowers-plugin

---

The Claude Code Superpowers plugin is the closest thing the ecosystem has to a development methodology in a box — search *Claude Code plugins Superpowers* and this is the name that comes up. Where Claude will happily jump straight to writing code, Superpowers makes it stop and think first — brainstorm, spec, isolate the work, and build test-first. It is the most-starred plugin in the Claude Code ecosystem, and this guide explains what it is, how its workflow works, how to install it, and when to use it.

*Last updated: July 2026.*

## Key Takeaways

> If you remember nothing else:
>
> * **Superpowers** bundles a full **brainstorm → spec → worktrees → TDD** methodology as a chain of skills
> * It is the **most-starred plugin** in the ecosystem (`obra/superpowers`, ~248k⭐ as of July 2026)
> * Install via its marketplace: `/plugin marketplace add obra/superpowers-marketplace` then `/plugin install superpowers@superpowers-marketplace`
> * It exists to stop Claude from **charging ahead and building the wrong thing**
> * Best for **substantial, multi-step work**; overkill for one-line fixes

## Table of Contents

1. [What Is Superpowers?](#what-is-superpowers)
2. [How the Workflow Works](#how-the-workflow-works)
3. [How to Install & Set Up](#how-to-install--set-up)
4. [How to Use It](#how-to-use-it)
5. [Who It's For](#who-its-for)
6. [Conclusion](#conclusion)

## What Is Superpowers?

Superpowers is a community [Claude Code plugin](/blog/claude-code-plugins) built by developer Jesse Vincent ([obra](https://github.com/obra/superpowers) on GitHub) that bundles an entire engineering methodology into a set of skills. Rather than adding one capability, it changes *how* Claude approaches work — imposing the plan-first discipline a senior engineer would. With ~248k stars as of July 2026, it is the most-starred plugin in the ecosystem and a fixture on nearly every "best plugins" list.

The reason it resonates is that it targets the single biggest weakness of AI coding: eagerness. Left alone, Claude optimizes for producing *an* answer fast, not necessarily the *right* one — it reads a request, forms an assumption, and starts writing. Superpowers inserts the steps a senior engineer applies automatically: slow down, understand the problem, agree on a plan, then execute in a controlled way. It is less a single feature than a set of rails that keep a capable model from getting ahead of itself.

## How the Workflow Works

The plugin runs Claude through a structured sequence instead of letting it improvise:

1. **Brainstorm** — explore the approach and surface trade-offs before committing.
2. **Spec** — write down what will be built, so there is a shared target.
3. **Worktrees** — isolate the work in dedicated git worktrees, keeping changes contained.
4. **Test-driven implementation** — build test-first, so correctness is checked as it goes.

That rhythm — plan and confirm *before* code — is the whole point. It is the antidote to the common failure mode where an AI confidently builds something you did not ask for.

## How to Install & Set Up

Superpowers is a community plugin, so you add its marketplace first, then install:

```text
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
```

Run `/plugin` to confirm it is enabled, and `/reload-plugins` to activate it in a running session. For the general process, see [how to install Claude Code plugins](/blog/how-to-install-claude-code-plugins).

## How to Use It

Once enabled, start a substantial task and let the workflow lead — Superpowers will guide Claude to brainstorm and spec before writing code, and to work in isolated worktrees. Lean into the structure: answer its planning questions, confirm the spec, and let it build test-first. The upfront steps feel slower on a small task but pay for themselves on anything multi-step. It pairs naturally with a planning skill like Planning with Files for work that must survive context loss.

## Who It's For

Superpowers is for anyone who hands Claude *features*, not just one-line fixes. If you have watched Claude race ahead and build the wrong thing, this is the guardrail. **Skip it** for tiny, well-scoped edits where the ceremony outweighs the benefit. To see how it stacks up against other options, see the tested [best Claude Code plugins](/blog/best-claude-code-plugins) roundup.

## Conclusion

The Superpowers plugin turns Claude Code from an eager coder into a disciplined engineer: brainstorm, spec, isolate, and test-first. Install it from its marketplace, use it on substantial work, and let the plan-first rhythm do its job. For the wider toolkit, the [best Claude Code plugins](/blog/best-claude-code-plugins) and the [Claude Code plugins guide](/blog/claude-code-plugins) are the next reads.

---

## Related Resources

- [Claude Code Plugins: The Complete Guide](/blog/claude-code-plugins)
- [Best Claude Code Plugins (2026): Tested & Ranked](/blog/best-claude-code-plugins)
- [How to Install & Use Claude Code Plugins](/blog/how-to-install-claude-code-plugins)
- [Awesome Claude Code Plugins: The Curated List](/blog/awesome-claude-code-plugins)
- [Claude Code Skills vs. Plugins vs. Agents vs. MCP](/blog/claude-code-skills-vs-plugins-vs-agents)
