Back to AI Tools & Agents

using-superpowers

AI assistantskill invocationworkflow managementClaude CodeAI productivityagent skillsbest practices
229.6k📄 MIT🕒 2026-06-16Source ↗

Install this skill

npx skills add obra/superpowers

Works across Claude Code, Cursor, Codex, Copilot & Antigravity

The using-superpowers skill establishes a mandatory protocol for agents to identify and execute relevant task-specific workflows. It mandates that any agent operation—even minor queries—must undergo a rigorous evaluation against available skill sets before execution begins. If a 1% probability exists that a skill applies to the current request, the agent is strictly required to invoke that skill immediately. This creates a standardized, predictable environment where agents prioritize established best practices over impulsive, ad-hoc actions. By forcing a pre-task validation step, the system ensures that complex debugging, architecture, or coding tasks are handled through proven methodologies rather than individual guesswork. It eliminates subjective rationalizations like 'this is too simple for a skill' or 'I will check after looking at the code,' enforcing consistent discipline across all agent-led interactions.

When to Use This Skill

  • Commencing any new code generation task
  • Starting a debugging session for a failing test
  • Refactoring existing modules or components
  • Brainstorming architectural changes for a feature

How to Invoke This Skill

Example prompts that trigger this skill in Claude Code, Cursor, or Antigravity:

  • How should I start this feature?
  • Can you help me fix this error?
  • What is the best way to approach this refactor?
  • I need to add a new API endpoint
  • Let's build a authentication module

Pro Tips

  • 💡Always invoke this 'superpowers' skill at the very beginning of any new interaction or task to establish the critical framework for skill usage.
  • 💡Treat the '1% chance' rule as a mandatory diagnostic check for every user prompt; it's better to invoke and find a skill unnecessary than to miss a critical resource.
  • 💡Familiarize yourself with the skill invocation mechanism in your specific environment (e.g., `Skill` tool in Claude Code) to ensure seamless and immediate application.

What this skill does

  • Forces mandatory pre-action skill evaluation
  • Categorizes tasks by process vs. implementation
  • Maps user intent to existing domain-specific toolkits
  • Provides a flow-based decision tree for task execution
  • Strictly bans bypass rationalization tactics

When not to use it

  • When the task is clearly outside the scope of any existing skills
  • If the request is purely administrative and unrelated to project work

Example workflow

  1. User submits a task request
  2. Agent performs a 1% probability check for skill applicability
  3. Agent invokes the required skill tool
  4. Agent announces the purpose of the skill usage
  5. Agent converts the skill checklist into individual tasks
  6. Agent executes the task by strictly following the skill steps

Prerequisites

  • A configured agent environment
  • Access to the agentpedia skills repository

Pitfalls & limitations

  • !Over-invoking skills for irrelevant tasks might cause noise
  • !Forgetting to check the latest version of a skill due to cognitive bias
  • !Failing to prioritize process skills before implementation skills

FAQ

Do I really need to check for skills even for simple questions?
Yes. The protocol treats all questions as tasks. Checking for skills prevents errors by ensuring you are following established project conventions.
What if I feel like the skill is overkill for my current task?
You must invoke it anyway. The 1% rule is non-negotiable and intended to prevent rationalization that leads to poor outcomes.
How do I handle situations where multiple skills seem to apply?
Follow the Skill Priority order: handle process skills (like debugging or brainstorming) before implementation skills (like coding or design).
Should I try to gather info before invoking the skill?
No. The skill instruction explicitly states that the check comes before any information gathering or file exploration.

How it compares

This differs from manual task execution by enforcing an objective, rule-based filter that removes personal judgment, ensuring every task follows the team's vetted procedural standards.

Source & trust

230k stars📄 MIT🕒 Updated 2026-06-16
📄 Full skill instructions — original source: obra/superpowers
<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>

## How to Access Skills

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

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

# 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];
"Might any skill apply?" [shape=diamond];
"Invoke Skill tool" [shape=box];
"Announce: 'Using [skill] to [purpose]'" [shape=box];
"Has checklist?" [shape=diamond];
"Create TodoWrite todo per item" [shape=box];
"Follow skill exactly" [shape=box];
"Respond (including clarifications)" [shape=doublecircle];

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


## Red Flags

These thoughts mean STOP—you're rationalizing:

| Thought | Reality |
|---------|---------|
| "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, 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" → debugging first, then domain-specific skills.

## Skill Types

**Rigid** (TDD, 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.

How to Use This Skill Unit

Option A: Project-Specific (Recommended)

  1. Click "Download" above
  2. In your project, create the directory: .agent/skills/using-superpowers/
  3. Save the file as SKILL.md
  4. The agent will automatically discover the skill based on its description.

Option B: Global Installation (All Agents)

Save the file to these locations to make it available across all projects:

  • Claude Code: ~/.claude/skills/obra/superpowers/using-superpowers/SKILL.md
  • Cursor: ~/.cursor/skills/obra/superpowers/using-superpowers/SKILL.md
  • Antigravity: ~/.gemini/antigravity/skills/obra/superpowers/using-superpowers/SKILL.md

🚀 Install with CLI:
npx skills add obra/superpowers

Read the Master Guide: Mastering Agent Skills

Recommended Rules

View more rules

Recommended Workflows

View more workflows

Recommended MCP Servers

View more MCP servers

Take It Further

Maximize your productivity with these powerful resources

📋

Define Your Standards

Set up coding standards to ensure this workflow produces consistent, high-quality results.

Browse Rules Library
📖

Master Workflows

Learn how to create custom workflows, use Turbo Mode, and build your automation library.

Complete Guide

How to use this Skill in Claude Code & Cursor

For Claude Code (CLI)

To use this skill in Claude Code, copy the rule content into your project's custom instructions or follow our Add-Skill CLI guide. This ensures Claude follows your standards during every code generation.

For Cursor & Windsurf

For Cursor or Windsurf, individual skills are best used in the "Rules for AI" section. This specific unit helps the agent avoid ai tools & agents issues, leading to cleaner, more efficient code.

Why the skill format matters: the standardized Agent Skills format lets your AI agent load detailed instructions only when they are relevant, keeping your prompt clean while improving results.

Source & attribution

This skill is categorized under AI Tools & Agents and is published by Jesse Vincent, maintained in obra/superpowers.

← Browse All Agent Skills
Sponsored AI assistant. Recommendations may be paid.