🎯

finishing-a-development-branch

🎯Skill

from obra/superpowers

VibeIndex|
What it does

Completes and merges a development branch by performing final code review, running tests, resolving any conflicts, and preparing the branch for integration into the main codebase.

finishing-a-development-branch

Installation

Install skill:
npx skills add https://github.com/obra/superpowers --skill finishing-a-development-branch
1,226
Last UpdatedJan 25, 2026

Skill Details

SKILL.md

Overview

# Superpowers

Superpowers is a complete software development workflow for your coding agents, built on top of a set of composable "skills" and some initial instructions that make sure your agent uses them.

How it works

It starts from the moment you fire up your coding agent. As soon as it sees that you're building something, it doesn't just jump into trying to write code. Instead, it steps back and asks you what you're really trying to do.

Once it's teased a spec out of the conversation, it shows it to you in chunks short enough to actually read and digest.

After you've signed off on the design, your agent puts together an implementation plan that's clear enough for an enthusiastic junior engineer with poor taste, no judgement, no project context, and an aversion to testing to follow. It emphasizes true red/green TDD, YAGNI (You Aren't Gonna Need It), and DRY.

Next up, once you say "go", it launches a subagent-driven-development process, having agents work through each engineering task, inspecting and reviewing their work, and continuing forward. It's not uncommon for Claude to be able to work autonomously for a couple hours at a time without deviating from the plan you put together.

There's a bunch more to it, but that's the core of the system. And because the skills trigger automatically, you don't need to do anything special. Your coding agent just has Superpowers.

Sponsorship

If Superpowers has helped you do stuff that makes money and you are so inclined, I'd greatly appreciate it if you'd consider [sponsoring my opensource work](https://github.com/sponsors/obra).

Thanks!

  • Jesse

Installation

Note: Installation differs by platform. Claude Code has a built-in plugin system. Codex and OpenCode require manual setup.

Claude Code (via Plugin Marketplace)

In Claude Code, register the marketplace first:

```bash

/plugin marketplace add obra/superpowers-marketplace

```

Then install the plugin from this marketplace:

```bash

/plugin install superpowers@superpowers-marketplace

```

Verify Installation

Check that commands appear:

```bash

/help

```

```

# Should see:

# /superpowers:brainstorm - Interactive design refinement

# /superpowers:write-plan - Create implementation plan

# /superpowers:execute-plan - Execute plan in batches

```

Codex

Tell Codex:

```

Fetch and follow instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.codex/INSTALL.md

```

Detailed docs: [docs/README.codex.md](docs/README.codex.md)

OpenCode

Tell OpenCode:

```

Fetch and follow instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.opencode/INSTALL.md

```

Detailed docs: [docs/README.opencode.md](docs/README.opencode.md)

The Basic Workflow

  1. brainstorming - Activates before writing code. Refines rough ideas through questions, explores alternatives, presents design in sections for validation. Saves design document.
  1. using-git-worktrees - Activates after design approval. Creates isolated workspace on new branch, runs project setup, verifies clean test baseline.
  1. writing-plans - Activates with approved design. Breaks work into bite-sized tasks (2-5 minutes each). Every task has exact file paths, complete code, verification steps.
  1. subagent-driven-development or executing-plans - Activates with plan. Dispatches fresh subagent per task with two-stage review (spec compliance, then code quality), or executes in batches with human checkpoints.
  1. test-driven-development - Activates during implementation. Enforces RED-GREEN-REFACTOR: write failing test, watch it fail, write minimal code, watch it pass, commit. Deletes code written before tests.
  1. requesting-code-review - Activates between tasks. Reviews against plan, reports issues by severity. Critical issues block progress.
  1. finishing-a-development-branch - Activates when tasks complete. Verifies tests, presents options (merge/PR/keep/

More from this repository10

πŸͺ
obra-superpowersπŸͺMarketplace

Provides a structured, systematic workflow for AI coding agents to collaboratively design, plan, and implement software projects through iterative, disciplined development processes.

🎯
brainstorming🎯Skill

Refines and clarifies project requirements through interactive design discussion, breaking down high-level goals into concrete, digestible specification chunks.

🎯
systematic-debugging🎯Skill

Systematically identifies, isolates, and resolves software bugs by breaking down complex issues into methodical, reproducible debugging steps and tracking root cause analysis.

🎯
test-driven-development🎯Skill

Guides developers through a rigorous test-driven development workflow, ensuring code is written incrementally with tests preceding implementation, focusing on red/green TDD principles.

🎯
writing-plans🎯Skill

Generates comprehensive, actionable implementation plans for software development tasks, emphasizing test-driven development and pragmatic engineering principles.

🎯
executing-plans🎯Skill

Executes a predefined implementation plan by systematically breaking down engineering tasks and guiding subagents through each step of the plan with iterative review and progression.

🎯
subagent-driven-development🎯Skill

Coordinates multiple specialized AI agents to collaboratively execute software development tasks, with each agent focusing on specific subtasks while being continuously reviewed and guided.

🎯
verification-before-completion🎯Skill

Validates and cross-checks work against the original project specification before marking a development task as complete, ensuring alignment with initial design goals and preventing premature task ...

🎯
using-superpowers🎯Skill

Refines project design through interactive specification gathering and breaks down complex software development tasks into manageable, reviewable implementation plans.

🎯
requesting-code-review🎯Skill

Requests and facilitates a structured code review process, systematically evaluating code quality, potential improvements, and adherence to project standards.