TL;DR
obra/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.
Read next
The mattpocock/skills repository hit 62k stars on GitHub's weekly trending list with 17 composable Claude Code agent skills that tackle the four failure modes killing real engineering teams.
5 min readobra/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 readCodeGraph builds a local SQLite index of your codebase so Claude Code, Cursor, and Codex CLI spend far fewer tokens exploring files - trending on GitHub with 12k stars and real benchmark numbers.
6 min readobra/superpowers appeared on GitHub's daily trending list with more than 1,600 stars in a single day - a fast rise for a developer tooling project that does not ship a new model, a flashy UI, or a clever benchmark. The velocity suggests it is touching a nerve.
The premise is simple but pointed: coding agents can write code, but they consistently skip the structured practices that make software durable. They reach for a fix before diagnosing a root cause. They skip tests until the end, or skip them entirely. They do not review their output against the original plan. They run everything in the main working directory instead of an isolated branch. Superpowers is a composable skills framework that encodes the development methodology a disciplined senior engineer would follow - and makes it the default behavior for any agent that loads it.
The project is MIT licensed and maintained under Prime Radiant. The source is at https://github.com/obra/superpowers.
Superpowers organizes the software development lifecycle into discrete stages, each backed by a skill the agent can invoke. The full workflow runs roughly like this:
Brainstorming - the agent does not immediately start writing code. It refines the idea through targeted questions and presents a design for human validation before any implementation begins.
Git worktrees - rather than working directly in the main tree, the agent creates an isolated workspace via git worktree. This means experimental work cannot corrupt the working branch and parallel tasks can run without interference.
Writing plans - work is decomposed into tasks small enough to complete in two to five minutes each, with exact specifications. The planning step exists so both the agent and the human agree on what done looks like before implementation starts.
Subagent-driven development - each planned task gets dispatched to a fresh subagent with a two-stage review. This mirrors how production teams structure parallel work: separate concerns, separate reviewers, merge when verified.
Test-driven development - Superpowers enforces the RED-GREEN-REFACTOR cycle. A failing test must exist before implementation. The agent is not permitted to move to refactor until the test is green. This single constraint prevents a large class of agent errors where a solution appears to work but has not been validated against any specification.
Code review - once implementation is done, the agent runs an automated review pass that checks the output against the original plan specifications. This is not a style pass; it is a correctness gate.
Finishing a branch - the framework handles merge decisions, keeping the commit history clean and the process auditable.
The skills library covers fifteen or more capabilities across testing, debugging, collaboration, and meta categories. The debugging skills are particularly notable: they emphasize systematic root-cause analysis before touching any code, which directly counters one of the most common failure modes in agent-driven development.
Get the weekly deep dive
Tutorials on Claude Code, AI agents, and dev tools - delivered free every week.
From the archive
May 14, 2026 • 6 min read
May 14, 2026 • 6 min read
May 14, 2026 • 6 min read
May 14, 2026 • 7 min read
Superpowers is designed to work across multiple agent platforms. Installation is straightforward for each:
Claude Code (official marketplace):
/plugin install superpowers@claude-plugins-official
/plugins
Search for and select "superpowers" from the list.
gemini extensions install https://github.com/obra/superpowers
gemini extensions update superpowers
/add-plugin superpowers
GitHub Copilot CLI:
copilot plugin marketplace add obra/superpowers-marketplace
copilot plugin install superpowers@superpowers-marketplace
Factory Droid:
droid plugin marketplace add https://github.com/obra/superpowers
droid plugin install superpowers@superpowers
OpenCode users should fetch instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.opencode/INSTALL.md.
No runtime dependencies are listed beyond the agent platform itself. The skills are Shell-based, which keeps the footprint minimal and the behavior auditable - you can read exactly what each skill does before installing it.
Teams shipping production code with AI agents. If your agents are writing code that goes into a real codebase, Superpowers gives you the procedural guardrails to catch problems before they reach review. The TDD enforcement alone is worth the install for any team that has discovered broken agent-generated code after the fact.
Developers exploring multi-agent architectures. The subagent-driven development pattern - dispatching fresh agents per task with staged review - is one of the more practical approaches to parallelizing agent work. If you are building workflows where multiple agents collaborate on a single feature, Superpowers provides a reference model for how those handoffs should work.
Anyone frustrated with agent context drift. One of the most common agent failure modes is losing track of the original intent as implementation grows. The brainstorm-then-plan-then-implement sequence keeps the goal anchored at each stage.
Educators and methodology builders. The skills library is well-structured enough to serve as a curriculum for how to think about agent-assisted development. The project README reads partly as a methodology document, not just a technical spec.
Superpowers is probably not worth the overhead for quick one-shot agent tasks - generating a script, writing a test fixture, summarizing a document. The framework pays off when you are doing real feature development that spans planning, implementation, review, and merge.
The Developers Digest skills directory at skills.developersdigest.tech covers many of the same categories Superpowers addresses: agent workflow patterns, TDD with agents, code review automation, and multi-agent coordination. Superpowers sits at the intersection of those categories - it is not a single skill but a methodology that ties them together.
The hooks ecosystem at hooks.developersdigest.tech is a natural complement. Hooks fire before and after tool calls and sessions; Superpowers skills fire at development lifecycle transitions. Used together, hooks can enforce that certain Superpowers stages run automatically - for example, triggering a plan-writing skill at the start of every new task, or a code review skill before every commit.
The subagent patterns in Superpowers also connect to what is covered at subagent.developersdigest.tech. The dispatch-and-review model the framework uses for parallel task execution is essentially a production-ready implementation of the subagent coordination patterns explored there.
If you are already running Claude Code with custom skills, Superpowers is worth adding to your install as a methodology layer on top of your existing skill library.
Superpowers gets the core insight right: agents need structured methodology, not just raw capability. The TDD enforcement and the plan-before-implement gate address two of the highest-frequency agent failure modes in real development workflows. The multi-platform support is a genuine differentiator - most agent skill frameworks assume a single runtime.
The limitations are real though. Shell-based skills can be opaque when they fail. The two-stage subagent review adds latency that may not be justified for smaller tasks. The framework assumes the agent platform supports plugin-style skill loading, which is not universal - if you are running a custom agent outside the supported list, you will need to manually wire the methodology.
The methodology itself is not new. RED-GREEN-REFACTOR, git worktrees for isolation, and plan-before-implement are all established practices. What Superpowers adds is encoding them as agent-executable skills with enforced sequencing. Whether that encoding holds up under real production load - complex codebases, ambiguous requirements, agents that hallucinate mid-task - is a question the community will answer over the next few months of adoption.
Worth watching. Worth installing for any team doing serious agent-assisted development.
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 ToolCognition Labs' autonomous software engineer. Handles full tasks end-to-end - reads docs, writes code, runs tests, and...
View ToolInteractive TUI dashboard that shows exactly where your Claude Code and Cursor tokens are going, in real time.
View ToolOpenAI's coding agent for terminal, cloud, IDE, GitHub, Slack, and Linear workflows. Reads repos, edits files, runs comm...
View ToolTurn a one-liner into a working Claude Code skill. From idea to installed in a minute.
View AppEvery coding agent in one window. Stop alt-tabbing between Claude, Codex, and Cursor.
View AppUnlock pro skills and share private collections with your team.
View AppDeep comparison of the top AI agent frameworks - LangGraph, CrewAI, Mastra, CopilotKit, AutoGen, and Claude Code.
AI AgentsConfigure model, tools, MCP, skills, memory, and scoping.
Claude CodeAuto-memory that persists across multiple subagent invocations.
Claude CodeCodeGraph builds a local SQLite index of your codebase so Claude Code, Cursor, and Codex CLI spend far fewer tokens expl...
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.