# Superpowers ## Docs - [Skill Anatomy](https://mintlify.wiki/mridullpandey/superpowers/contributing/skill-anatomy.md): The structure of a SKILL.md file: frontmatter, body, special tags, and how supporting files are organized. - [Submitting a Skill](https://mintlify.wiki/mridullpandey/superpowers/contributing/submitting.md): Contribute a new skill to the Superpowers project via pull request. - [Testing Skills](https://mintlify.wiki/mridullpandey/superpowers/contributing/testing-skills.md): Verify that your skill triggers at the right time and holds up under pressure using subagent test scenarios. - [Writing Skills](https://mintlify.wiki/mridullpandey/superpowers/contributing/writing-skills.md): Create new Superpowers skills that automatically trigger at the right moment and guide agents through proven workflows. - [Installation](https://mintlify.wiki/mridullpandey/superpowers/installation.md): Install Superpowers on Claude Code, Cursor, OpenCode, Codex, or Gemini CLI with platform-specific instructions. - [Introduction](https://mintlify.wiki/mridullpandey/superpowers/introduction.md): Superpowers is an agentic skills framework that gives coding agents a structured software development methodology — brainstorming, planning, TDD, debugging, and code review — that activates automatically. - [Claude Code](https://mintlify.wiki/mridullpandey/superpowers/platforms/claude-code.md): Install Superpowers on Claude Code via the official plugin marketplace or the community marketplace. - [Codex](https://mintlify.wiki/mridullpandey/superpowers/platforms/codex.md): Install Superpowers on OpenAI Codex via native skill discovery with a symlink to the skills directory. - [Cursor](https://mintlify.wiki/mridullpandey/superpowers/platforms/cursor.md): Install Superpowers on Cursor via the plugin marketplace in Cursor Agent chat. - [Gemini CLI](https://mintlify.wiki/mridullpandey/superpowers/platforms/gemini-cli.md): Install Superpowers on Gemini CLI as a native extension with one command. - [OpenCode](https://mintlify.wiki/mridullpandey/superpowers/platforms/opencode.md): Install Superpowers on OpenCode by adding it to your opencode.json plugin array. - [Quickstart](https://mintlify.wiki/mridullpandey/superpowers/quickstart.md): See Superpowers skills activate in a real session and learn how to trigger them manually on any platform. - [Code Review](https://mintlify.wiki/mridullpandey/superpowers/skills/code-review.md): How to request code review, what reviewers check, and how to receive and act on feedback — including the two-stage review process used in subagent-driven development. - [Git Worktrees](https://mintlify.wiki/mridullpandey/superpowers/skills/git-worktrees.md): Create isolated workspaces sharing the same repository so you can work on multiple branches simultaneously without switching context or polluting your main workspace. - [Subagent-Driven Development](https://mintlify.wiki/mridullpandey/superpowers/skills/subagent-driven-development.md): Execute implementation plans by dispatching a fresh subagent per task, with spec compliance review followed by code quality review after each one. - [Systematic Debugging](https://mintlify.wiki/mridullpandey/superpowers/skills/systematic-debugging.md): Random fixes waste time and create new bugs. Always find the root cause before attempting any fix — symptom fixes are failure. - [Test-Driven Development](https://mintlify.wiki/mridullpandey/superpowers/skills/test-driven-development.md): Write the test first, watch it fail, then write minimal code to pass. If you didn't watch the test fail, you don't know if it tests the right thing. - [Brainstorming](https://mintlify.wiki/mridullpandey/superpowers/workflow/brainstorming.md): How Superpowers refines rough ideas into validated design documents through collaborative dialogue before any implementation begins. - [Executing plans](https://mintlify.wiki/mridullpandey/superpowers/workflow/executing-plans.md): How Superpowers executes implementation plans — either through fresh subagents with two-stage review or inline with human checkpoints. - [Finishing a branch](https://mintlify.wiki/mridullpandey/superpowers/workflow/finishing-a-branch.md): How Superpowers verifies, reviews, and completes implementation work — merging, creating a PR, keeping, or discarding the branch. - [Workflow overview](https://mintlify.wiki/mridullpandey/superpowers/workflow/overview.md): The seven-step agentic development loop that Superpowers enforces from idea to merged branch. - [Writing plans](https://mintlify.wiki/mridullpandey/superpowers/workflow/writing-plans.md): How Superpowers breaks an approved design document into bite-sized implementation tasks with complete code, exact paths, and TDD steps.