Superpowers skills library for GitHub Copilot CLI — TDD, debugging, brainstorming, plan writing, and proven development workflows.
npx claudepluginhub dwaintr/superpowers-copilotComplete Superpowers skills library by Jesse Vincent (obra/superpowers), packaged for GitHub Copilot CLI. Includes TDD, systematic debugging, brainstorming, plan writing, subagent-driven development, code review, and more.
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Share bugs, ideas, or general feedback.
Until obra/superpowers ships native GitHub Copilot CLI support, this repo packages the full Superpowers skills library using Copilot CLI's native plugin and skills system. All skills are Jesse Vincent's original work — this repo only adds the Copilot CLI wiring.
Superpowers by Jesse Vincent is a complete software development workflow for AI coding agents. It transforms how your agent works:
Superpowers already supports Claude Code, Cursor, Codex, Gemini CLI, and OpenCode. This repo adds GitHub Copilot CLI to that list.
curl -fsSL https://raw.githubusercontent.com/DwainTR/superpowers-copilot/main/install.sh | bash
copilot plugin marketplace add DwainTR/superpowers-copilot
copilot plugin install superpowers@superpowers-copilot
Start a new Copilot CLI session and run:
/skills list
You should see all 14 Superpowers skills listed.
| Skill | When it activates |
|---|---|
| brainstorming | Before any creative work — creating features, building components |
| test-driven-development | When implementing any feature or bugfix, before writing code |
| systematic-debugging | When encountering any bug, test failure, or unexpected behavior |
| writing-plans | When you have specs for a multi-step task, before touching code |
| executing-plans | When executing an implementation plan with human checkpoints |
| subagent-driven-development | When executing plans with independent tasks via subagents |
| dispatching-parallel-agents | When facing 2+ independent tasks that can be worked on in parallel |
| requesting-code-review | Between tasks, to review against plan |
| receiving-code-review | When responding to review feedback |
| verification-before-completion | Before declaring any fix or feature done |
| using-git-worktrees | After design approval, to create isolated workspace |
| finishing-a-development-branch | When all tasks complete, to merge/PR/cleanup |
| writing-skills | When creating new skills |
| using-superpowers | Meta-skill that ensures all other skills are used when relevant |
| Agent | Description |
|---|---|
| code-reviewer | Senior code reviewer that validates completed work against plans and coding standards |
Skills activate automatically when Copilot detects relevance. You can also invoke them explicitly:
Use the /brainstorming skill to explore this feature idea
Use the /test-driven-development skill to implement this
Use the /systematic-debugging skill to find the root cause
This repo follows the exact same patterns as other Copilot CLI plugins:
plugins/superpowers/skills/ — each skill has a SKILL.md with YAML frontmatterplugins/superpowers/agents/ — Markdown files with agent configuration.claude-plugin/marketplace.json — allows copilot plugin installThe install script also adds a snippet to ~/.copilot/copilot-instructions.md that tells Copilot to check for relevant skills before every task — replicating the session-start hook that Superpowers uses in Claude Code.
curl -fsSL https://raw.githubusercontent.com/DwainTR/superpowers-copilot/main/install.sh | bash