Metadata-Version: 2.4
Name: agent-superpowers
Version: 5.0.6
Summary: Install obra/superpowers agentic skills for GitHub Copilot and Claude Code
License: MIT License
        
        Copyright (c) 2026 SamPowerCode
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Keywords: copilot,skills,agents,superpowers,claude,github-copilot
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# agent-superpowers

Install the [obra/superpowers](https://github.com/obra/superpowers) agentic skills framework directly into your project or user profile — no GitHub access or manual cloning required.

Superpowers provides a set of skills (brainstorming, TDD, systematic debugging, code review, and more) that guide AI coding assistants through structured development workflows. Skills follow the open [agentskills.io](https://agentskills.io) standard and work with **GitHub Copilot** (VS Code, PyCharm) and **Claude Code**.

## Installation

```bash
# pip
pip install agent-superpowers

# uv — install as a persistent tool
uv tool install agent-superpowers

# uvx — run once without installing
uvx agent-superpowers install
```

## Usage

### Install skills

```bash
agent-superpowers install
```

You'll be prompted to choose where to install:

```
Where would you like to install the Superpowers skills?

  1. This project (GitHub Copilot)  →  .github/skills/
  2. This project (Claude Code)     →  .claude/skills/
  3. GitHub Copilot (global)        →  ~/.copilot/skills/
  4. Claude Code (global)           →  ~/.claude/skills/
```

**Options:**

| Flag | Effect |
|---|---|
| `--force` | Overwrite existing skills without prompting |
| `--skip-existing` | Leave existing skills untouched |

### List bundled skills

```bash
agent-superpowers list
```

### Check version

```bash
agent-superpowers --version
```

## What gets installed

14 skills from the [obra/superpowers](https://github.com/obra/superpowers) framework (v5.0.6):

| Skill | When to use |
|---|---|
| `brainstorming` | Before any new feature or creative work |
| `test-driven-development` | When implementing features or fixing bugs |
| `systematic-debugging` | When encountering bugs or unexpected behavior |
| `writing-plans` | When planning multi-step tasks |
| `executing-plans` | When executing a written plan |
| `subagent-driven-development` | For parallel independent implementation tasks |
| `requesting-code-review` | Before merging work |
| `receiving-code-review` | When responding to review feedback |
| `dispatching-parallel-agents` | When facing 2+ independent tasks |
| `verification-before-completion` | Before claiming work is done |
| `finishing-a-development-branch` | When implementation is complete |
| `using-git-worktrees` | For isolated feature branches |
| `writing-skills` | When creating new skills |
| `using-superpowers` | Session initialization |

## Credits

Skills are from [obra/superpowers](https://github.com/obra/superpowers) by Jesse Vincent, licensed MIT.

The skill format follows the open standard at [agentskills.io](https://agentskills.io).
