Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
obra avatar

Using Superpowers

  • 198k installs
  • 262k repo stars
  • Updated July 24, 2026
  • obra/superpowers

using-superpowers is an agent meta-skill that enforces discovering and invoking applicable Superpowers skills before any action instead of improvising from memory.

About

using-superpowers is the meta-skill at the heart of obra's Superpowers library: it forces the agent to discover and follow relevant skills before improvising. The workflow is strict — if a skill might apply, invoke it immediately with the Skill tool, even when the task feels simple or faster to answer from memory. It maps Claude Code tool names to platform equivalents (Task to spawn_agent on Codex, etc.) without rewriting skill content. The skill covers brainstorming, TDD, debugging, plans, and code review as a coordinated process library rather than one-off prompts. Developers reach for it when they want repeatable engineering discipline instead of ad-hoc chat answers. It complements individual Superpowers skills by governing when and how they load, making the whole plugin behave like a senior engineer who always checks the playbook first.

  • Requires checking for and invoking applicable skills before any response or action
  • Maps Claude Code tool names to Codex, Cursor, and other platform equivalents
  • Anchors the full Superpowers process library: brainstorming, TDD, plans, and review
  • Prevents agents from skipping documented workflows for seemingly simple tasks
  • Does not rewrite skill instructions — only routes to the right platform-native tools

Using Superpowers by the numbers

  • 198,023 all-time installs (skills.sh)
  • +9,121 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #26 of 3,301 Productivity & Planning skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

using-superpowers capabilities & compatibility

Capabilities
skill routing · agent orchestration · workflow enforcement
npx skills add https://github.com/obra/superpowers --skill using-superpowers

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs198k
repo stars262k
Security audit2 / 3 scanners passed
Last updatedJuly 24, 2026
Repositoryobra/superpowers

How do I stop my coding agent from skipping proven workflows and answering from memory when a Superpowers skill already exists?

Establish mandatory skill-checking discipline before any agentic task or response

Who is it for?

Developers using the obra Superpowers plugin who want disciplined skill routing across Claude Code, Cursor, Codex, and similar agents.

Skip if: Skip when you are not using Superpowers or when a single domain skill already fully covers the task without meta routing.

When should I use this skill?

At session start and before any non-trivial task whenever Superpowers is installed and a specialized skill might apply.

What you get

The agent loads and follows the right Superpowers skill first, using platform-native tools mapped from Claude Code conventions.

  • Correct platform tool invocations
  • Successful subagent dispatch
  • Aligned plan-update calls

By the numbers

  • Documents mappings for at least six Claude Code tools including Task, TodoWrite, and Skill
  • Covers parallel subagent dispatch via multiple spawn_agent calls

Files

SKILL.mdMarkdownGitHub ↗

<SUBAGENT-STOP> If you were dispatched as a subagent to execute a specific task, skip this skill. </SUBAGENT-STOP>

<EXTREMELY-IMPORTANT> If you think there is even a 1% chance a skill might apply to what you are doing, you ABSOLUTELY MUST invoke the skill.

IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.

This is not negotiable. This is not optional. You cannot rationalize your way out of this. </EXTREMELY-IMPORTANT>

Instruction Priority

Superpowers skills override default system prompt behavior, but user instructions always take precedence:

1. User's explicit instructions (CLAUDE.md, GEMINI.md, AGENTS.md, direct requests) — highest priority 2. Superpowers skills — override default system behavior where they conflict 3. Default system prompt — lowest priority

If CLAUDE.md, GEMINI.md, or AGENTS.md says "don't use TDD" and a skill says "always use TDD," follow the user's instructions. The user is in control.

How to Access Skills

Never read skill files manually with file tools — always use your platform's skill-loading mechanism so the skill is properly activated.

In Claude Code: Use the Skill tool. When you invoke a skill, its content is loaded and presented to you — follow it directly.

In Codex: Skills load natively. Follow the instructions presented when a skill activates.

In Copilot CLI: Use the skill tool. Skills are auto-discovered from installed plugins.

In Gemini CLI: Skills activate via the activate_skill tool. Gemini loads skill metadata at session start and activates the full content on demand.

In other environments: Check your platform's documentation for how skills are loaded.

Platform Adaptation

Skills speak in actions ("dispatch a subagent", "create a todo", "read a file") rather than naming any one runtime's tools. For per-platform tool equivalents and instructions-file conventions, see claude-code-tools.md, codex-tools.md, copilot-tools.md, gemini-tools.md, pi-tools.md, and antigravity-tools.md. Gemini CLI users get the tool mapping loaded automatically via GEMINI.md.

Using Skills

The Rule

Invoke relevant or requested skills BEFORE any response or action. Even a 1% chance a skill might apply means that you should invoke the skill to check. If an invoked skill turns out to be wrong for the situation, you don't need to use it.

digraph skill_flow {
    "User message received" [shape=doublecircle];
    "About to enter plan mode?" [shape=doublecircle];
    "Already brainstormed?" [shape=diamond];
    "Invoke brainstorming skill" [shape=box];
    "Might any skill apply?" [shape=diamond];
    "Invoke the skill" [shape=box];
    "Announce: 'Using [skill] to [purpose]'" [shape=box];
    "Has checklist?" [shape=diamond];
    "Create a todo per item" [shape=box];
    "Follow skill exactly" [shape=box];
    "Respond (including clarifications)" [shape=doublecircle];

    "About to enter plan mode?" -> "Already brainstormed?";
    "Already brainstormed?" -> "Invoke brainstorming skill" [label="no"];
    "Already brainstormed?" -> "Might any skill apply?" [label="yes"];
    "Invoke brainstorming skill" -> "Might any skill apply?";

    "User message received" -> "Might any skill apply?";
    "Might any skill apply?" -> "Invoke the skill" [label="yes, even 1%"];
    "Might any skill apply?" -> "Respond (including clarifications)" [label="definitely not"];
    "Invoke the skill" -> "Announce: 'Using [skill] to [purpose]'";
    "Announce: 'Using [skill] to [purpose]'" -> "Has checklist?";
    "Has checklist?" -> "Create a todo per item" [label="yes"];
    "Has checklist?" -> "Follow skill exactly" [label="no"];
    "Create a todo per item" -> "Follow skill exactly";
}

Red Flags

These thoughts mean STOP—you're rationalizing:

ThoughtReality
"This is just a simple question"Questions are tasks. Check for skills.
"I need more context first"Skill check comes BEFORE clarifying questions.
"Let me explore the codebase first"Skills tell you HOW to explore. Check first.
"I can check git/files quickly"Files lack conversation context. Check for skills.
"Let me gather information first"Skills tell you HOW to gather information.
"This doesn't need a formal skill"If a skill exists, use it.
"I remember this skill"Skills evolve. Read current version.
"This doesn't count as a task"Action = task. Check for skills.
"The skill is overkill"Simple things become complex. Use it.
"I'll just do this one thing first"Check BEFORE doing anything.
"This feels productive"Undisciplined action wastes time. Skills prevent this.
"I know what that means"Knowing the concept ≠ using the skill. Invoke it.

Skill Priority

When multiple skills could apply, use this order:

1. Process skills first (brainstorming, systematic-debugging) - these determine HOW to approach the task 2. Implementation skills second (frontend-design, mcp-builder) - these guide execution

"Let's build X" → brainstorming first, then implementation skills. "Fix this bug" → systematic-debugging first, then domain-specific skills.

Skill Types

Rigid (TDD, systematic-debugging): Follow exactly. Don't adapt away discipline.

Flexible (patterns): Adapt principles to context.

The skill itself tells you which.

User Instructions

Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.

Related skills

Forks & variants (4)

Using Superpowers has 4 known copies in the catalog totaling 778 installs. They canonicalize to this original listing.

How it compares

Use using-superpowers when porting skills across agent runtimes; native Claude Code hosts can skip the mapping layer.

FAQ

Who is using-superpowers for?

Developers on obra Superpowers who need agents to check skills before acting.

When should I use using-superpowers?

At the beginning of tasks and whenever a specialized Superpowers workflow might apply instead of free-form chat.

Is using-superpowers safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.