TL;DR
obra/superpowers is a structured 7-stage development methodology for AI coding agents, installable directly in Claude Code, Cursor, and Gemini CLI - and trending hard with 173,000 GitHub stars.
Read next
obra/superpowers is a composable, opinionated methodology for AI coding agents - structured workflows covering planning, parallel subagent development, TDD, and code review, installable in one command across Claude Code, Cursor, Gemini CLI, and five other platforms.
5 min readobra/superpowers is a composable skills framework for coding agents that turns vague requests into structured, test-driven development - and it runs across Claude Code, Codex, Cursor, and Gemini CLI.
5 min readobra/superpowers picked up 1,600+ GitHub stars in a single day by solving the real problem with coding agents - they skip the boring parts that make software actually work.
6 min readSomething notable is happening on GitHub. obra/superpowers - a structured software development methodology for coding agents - has crossed 173,000 stars and added roughly 1,683 more in a single day. That kind of velocity in April 2026 is not an accident.
The timing makes sense. Development teams are past the "AI can write code" novelty phase and deep into the "our codebase is degrading because AI wrote it ad-hoc" phase. Superpowers addresses exactly that gap: not raw AI capability, but structured workflow. The project released v5.0.7 on March 31, 2026, maintaining active development while comparable projects slow down.
With 15,200 forks and an active Discord community, this is not a weekend project inflated by a viral post. It has the infrastructure of something developers are genuinely integrating into daily work.
Superpowers is a collection of composable agent skills - installable as plugins in Claude Code, Cursor, GitHub Copilot CLI, and Gemini CLI - that enforce a seven-stage development workflow:
The skills library covers testing (test-driven-development), debugging (systematic-debugging, verification-before-completion), and collaboration workflows like dispatching-parallel-agents, writing-plans, and receiving-code-review.
The core philosophy rests on four pillars stated explicitly in the project: test-driven development first, systematic over ad-hoc process, complexity reduction as the primary design goal, and evidence over claims - the agent must verify before declaring success.
What separates superpowers from a CLAUDE.md full of instructions is the composable structure. Each skill is a standalone unit. You can pull in just systematic-debugging and tdd without adopting the full seven-stage workflow. That modularity drives the forks - developers build their own combinations rather than taking or leaving the whole methodology.
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools - delivered free every week.
From the archive
For Claude Code, superpowers installs from the official marketplace in one command:
/plugin install superpowers@claude-plugins-official
If you prefer the superpowers-specific marketplace:
/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace
For Cursor users:
/add-plugin superpowers
For Gemini CLI:
gemini extensions install https://github.com/obra/superpowers
gemini extensions update superpowers
Once installed in Claude Code, the skills appear as slash commands. Start a new feature with /brainstorming, get a structured plan before writing any code, then move through the workflow stages at whatever pace fits the work. The writing-a-skill meta-skill lets you create custom skills that follow the same composable structure as the built-in ones.
There is no project-level configuration step. The methodology is embedded in the skills themselves rather than in project files.
The primary audience is developers who have shipped AI-generated code and felt the maintenance cost afterward. If your codebase has grown inconsistent from repeated one-shot agent sessions - missing tests, drifting architecture, context bleed between features - superpowers targets exactly that pattern.
It is also built for teams rather than solo devs. The dispatching-parallel-agents and subagent-driven-development skills assume you want multiple agents working in isolation on defined tasks, then merging reviewed output back together. That model maps cleanly onto team workflows where different contributors own different parts of a feature.
Junior developers learning agent-assisted development will find the structured methodology more educational than freestyle prompting. The TDD emphasis teaches habits that hold up whether or not you are using AI assistance.
Because superpowers runs across Claude Code, Cursor, GitHub Copilot CLI, and Gemini CLI, it does not require your team to standardize on one AI coding environment. The same skill set applies regardless of which tool individual contributors prefer.
Skills are a core theme on this site, and superpowers is the highest-starred composable skills framework currently under active development. If you have explored the skills directory at skills.developersdigest.tech, you have already seen the pattern superpowers takes to its logical conclusion: reusable agent behaviors that travel with you across projects and tools.
The seven-stage workflow also maps directly onto what Claude Code hooks enforce at the harness level. The resources at hooks.developersdigest.tech cover pre-tool and post-tool hooks that wrap agent actions with environment invariants. Superpowers operates at the slash-command level, but the two approaches compose well - hooks enforce what the environment allows, skills enforce what the methodology requires.
For developers building custom Claude Code setups from scratch, superpowers is worth studying as a reference architecture even if you do not install it wholesale. The conventions it uses - each skill self-documents in SKILL.md files, domain language lives in CONTEXT.md, subagents are dispatched with scoped context - are patterns you can adapt into your own workflow designs.
The seven-stage workflow delivers real value for complex features where ad-hoc prompting produces messy results. The TDD enforcement is the strongest element. Having test-first behavior embedded in a skill - rather than relying on the agent to remember or the developer to enforce - produces consistently better output than freestyle sessions.
The limitations are also real. For simple one-file changes or quick bug fixes, working through brainstorming and plan-writing stages adds friction without proportional return. The methodology was designed for feature-level work, not maintenance tasks.
The project is 65 percent Shell code, which means it is CLI-first by design. If your team works primarily through editor integrations without a terminal, some rough edges will show.
With 138 open issues and 141 open pull requests as of late April 2026, the project carries a meaningful backlog. Watch the release notes for v5.x updates rather than assuming the main branch is always production-stable.
The 173,000-star count is impressive, but viral trending moments inflate numbers. Evaluate whether the methodology fits your actual development patterns before reorganizing your workflow around it.
Technical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Anthropic's agentic coding CLI. Runs in your terminal, edits files autonomously, spawns sub-agents, and maintains memory...
View ToolAnthropic's flagship reasoning model. Best-in-class for coding, long-context analysis, and agentic workflows. 1M token c...
View ToolOpenAI's coding agent for terminal, cloud, IDE, GitHub, Slack, and Linear workflows. Reads repos, edits files, runs comm...
View ToolMost popular LLM framework. 100K+ GitHub stars. Chains, RAG, vector stores, tool use. LangGraph adds stateful multi-agen...
View ToolEvery coding agent in one window. Stop alt-tabbing between Claude, Codex, and Cursor.
View AppScore every coding agent on your own tasks. Catch regressions in CI.
View AppDesign subagents visually instead of editing YAML by hand.
View AppConfigure Claude Code for maximum productivity -- CLAUDE.md, sub-agents, MCP servers, and autonomous workflows.
AI AgentsDeep comparison of the top AI agent frameworks - LangGraph, CrewAI, Mastra, CopilotKit, AutoGen, and Claude Code.
AI AgentsA complete, citation-backed Claude Code course with setup, prompting systems, MCP, CI, security, cost controls, and capstone workflows.
ai-developmentobra/superpowers picked up 1,600+ GitHub stars in a single day by solving the real problem with coding agents - they ski...
Matt Pocock's Claude Code skills library picked up 3,372 GitHub stars on a single day. Here's what's inside, how to inst...
Matt Pocock's .claude skills directory hit 74.7k GitHub stars, offering structured workflows that address the four most...
Matt Pocock released production-ready agent skills straight from his .claude directory. With 66k stars and 16k added thi...
The mattpocock/skills repository hit 62k stars on GitHub's weekly trending list with 17 composable Claude Code agent ski...
obra/superpowers is a composable, opinionated methodology for AI coding agents - structured workflows covering planning,...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.