TL;DR
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.
Read next
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.
6 min readobra/superpowers enforces a seven-step development loop - brainstorming through branch completion - across Claude Code, Cursor, Gemini CLI, and five other agent platforms.
6 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 landed on GitHub's daily trending list today with 1,098 new stars in a single day. The repo sits at 175,149 total stars, built by Jesse Vincent and the team at Prime Radiant, and distributed under MIT license. The growth is not random. It is happening because AI coding agents have shifted from novelty to daily infrastructure, and the question developers are now asking is not "should I use an agent?" but "how do I use one without turning my codebase into a ball of mud in three weeks?"
Most repos in this space answer with another prompt template or another configuration snippet. Superpowers answers with a complete, opinionated development methodology - one that defines every stage of the build cycle and tells the agent exactly what to do at each one. That specificity is why it is trending, and why it is worth a close look.
Superpowers is a structured library of composable skills and workflow instructions for AI coding agents. The framework treats the full development lifecycle as a series of defined stages, each backed by a skill:
Brainstorming - before writing any code, the agent asks guided questions to refine an idea. Output is a design presented in digestible sections rather than a wall of text. This stage is about alignment, not speed.
Git Worktrees - instead of branching on a shared working tree, the agent creates isolated git worktrees for each piece of work. This makes genuine parallelism possible without mid-task merge conflicts.
Planning - work is broken into 2-to-5 minute tasks with exact specifications. Each task is small enough to be handed to a subagent and verified in isolation. The constraint is intentional - smaller tasks mean fewer variables when something breaks.
Subagent-Driven Development - the framework dispatches specialized agents per task and runs a two-stage review: one pass for correctness against the plan, a second for code quality standards. Output that does not pass both stages goes back for revision before continuing.
Test-Driven Development - a strict RED-GREEN-REFACTOR cycle is enforced. The agent must write a failing test before writing implementation code. The methodology does not treat TDD as a suggestion.
Code Review - validates completed work against the original plan and baseline quality standards before a branch is considered ready to merge.
Branch Finishing - handles merge decisions, cleanup, and handoff to the next stage.
The skills library also includes tooling for systematic debugging using root-cause analysis rather than guess-and-check, a parallel agent dispatching skill, and a skill creation framework so teams can build custom extensions on top of the methodology.
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools - delivered free every week.
From the archive
Apr 29, 2026 • 11 min read
Apr 29, 2026 • 11 min read
Apr 29, 2026 • 10 min read
Apr 29, 2026 • 12 min read
Installation is a single command per platform. From the official repository:
/plugin install superpowers@claude-plugins-official
/add-plugin superpowers
gemini extensions install https://github.com/obra/superpowers
OpenAI Codex CLI and App: Search "superpowers" in the plugins interface.
GitHub Copilot CLI: Available via the superpowers-marketplace integration.
After installing in Claude Code, you can immediately run /brainstorm to start a new project, /plan to break down existing work into subagent tasks, or /diagnose to start a structured debugging session. Each skill is usable independently - you do not need to adopt the entire methodology on day one.
The project's community Discord is at discord.gg/35wsABTejz. Release announcements and documentation are maintained at primeradiant.com/superpowers.
Superpowers is aimed at developers who are already comfortable with AI coding agents and have started running into the ceiling of basic prompt-and-hope workflows.
Solo developers get structure that catches compounding problems before they compound. The TDD enforcement is particularly useful when working alone and AI-assisted - it is easy to skip tests when an agent says "the code looks right," and the framework makes skipping harder.
Teams with mixed workflows - some members using agents, some not - benefit from the shared vocabulary and workflow artifacts. The brainstorming and planning stages produce designs and task breakdowns that are readable by developers who are not running agents. This reduces the "the agent just wrote a thousand lines and nobody reviewed it" risk.
Open-source maintainers who receive AI-assisted contributions get a starting point for evaluating PRs. Output that follows the superpowers methodology at least claims to have gone through a defined review process, which is more to work with than raw generated code.
Platform agnostic teams will appreciate that the same methodology runs on Claude Code, Cursor, Gemini CLI, and Copilot. If your team splits across tools, superpowers gives you common conventions without forcing a platform migration.
The composable skills architecture in superpowers is the same model that underpins the resources at skills.developersdigest.tech - purpose-built capabilities that extend what an AI coding agent does by default, installed and invoked by name. If you have been exploring the skills landscape through DevDigest, superpowers is a full methodology built on that model rather than a single skill.
The subagent-driven development stage maps directly to patterns covered at subagent.developersdigest.tech. Dispatching specialized agents per task, reviewing output independently, then merging is a technique DevDigest has covered in depth. Superpowers is one of the first public frameworks that treats it as a first-class workflow stage rather than an advanced trick.
The Claude Code hooks system - documented at hooks.developersdigest.tech - can complement superpowers naturally. A pre-commit hook that triggers the code review skill on every commit, or a post-tool hook that surfaces test failures back to the planning stage, extends the methodology without changing it. The two systems are designed independently but fit together well.
If you are using Claude Code skills daily and looking for an opinionated end-to-end methodology to structure agent-assisted development, superpowers is the most complete public option available today.
The strengths are real. Superpowers addresses a genuine problem - AI agents produce inconsistent results when given no structure - with a methodology that has been tested on real projects. The multi-platform support is unusual; most skills repos target a single agent. MIT license means you can fork and adapt without restriction.
The limitations are equally real. The framework is prescriptive. If your team's workflow diverges from the Brainstorm - Plan - Build - Review - Merge cycle, you will spend time adapting rather than adopting. The 2-to-5 minute task granularity is the right size for agentic execution but can feel bureaucratic for developers who prefer to write code directly and review after.
The 175k star count reflects real interest but also reflects the hype cycle around AI tooling in early 2026. A high star count does not guarantee the methodology survives contact with your actual codebase. And the framework is only as good as the agent executing it - current agents still make mistakes that the review stages may not catch.
The practical recommendation: start with one or two skills rather than the full methodology. /diagnose for debugging and /plan for task breakdown are the lowest-friction entry points. If the workflow fits, expand from there. If it does not, you have lost an afternoon rather than a sprint.
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 ToolInteractive TUI dashboard that shows exactly where your Claude Code and Cursor tokens are going, in real time.
View ToolHigh-performance code editor built in Rust with native AI integration. Sub-millisecond input latency. Built-in assistant...
View ToolEvery coding agent in one window. Stop alt-tabbing between Claude, Codex, and Cursor.
View AppTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppUnlock pro skills and share private collections with your team.
View AppA complete, citation-backed Claude Code course with setup, prompting systems, MCP, CI, security, cost controls, and capstone workflows.
ai-developmentPrefix prompts with ! to run shell commands directly, bypassing Claude.
Claude CodeExecute shell commands with persistent working directory in project bounds.
Claude Code
Nimbalyst Demo: A Visual Workspace for Codex + Claude Code with Kanban, Plans, and AI Commits Try it: https://nimbalyst.com/ Star Repo Here: https://github.com/Nimbalyst/nimbalyst This video demos N...

Composio: Connect AI Agents to 1,000+ Apps via CLI (Gmail, Google Docs/Sheets, Hacker News Workflows) Check out Composio here: http://dashboard.composio.dev/?utm_source=Youtube&utm_channel=0426&utm_...

Anthropic has released Channels for Claude Code, enabling external events (CI alerts, production errors, PR comments, Discord/Telegram messages, webhooks, cron jobs, logs, and monitoring signals) to b...
obra/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...
A single CLAUDE.md file inspired by Andrej Karpathy's observations about LLM coding mistakes gained 24,000 GitHub stars...

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