Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Meta-skill for routing tasks to the right skills before any action, response, or implementation work begins.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: using-superpowers3description: Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions4---56<SUBAGENT-STOP>7If you were dispatched as a subagent to execute a specific task, skip this skill.8</SUBAGENT-STOP>910<EXTREMELY-IMPORTANT>11If you think there is even a 1% chance a skill might apply to what you are doing, you ABSOLUTELY MUST invoke the skill.1213IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.1415This is not negotiable. This is not optional. You cannot rationalize your way out of this.16</EXTREMELY-IMPORTANT>1718## Instruction Priority1920Superpowers skills override default system prompt behavior, but **user instructions always take precedence**:21221. **User's explicit instructions** (CLAUDE.md, GEMINI.md, AGENTS.md, direct requests) — highest priority232. **Superpowers skills** — override default system behavior where they conflict243. **Default system prompt** — lowest priority2526If 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.2728## How to Access Skills2930**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.3132**In Gemini CLI:** Skills activate via the `activate_skill` tool. Gemini loads skill metadata at session start and activates the full content on demand.3334**In other environments:** Check your platform's documentation for how skills are loaded.3536## Platform Adaptation3738Skills use Claude Code tool names. Non-CC platforms: see `references/codex-tools.md` (Codex) for tool equivalents. Gemini CLI users get the tool mapping loaded automatically via GEMINI.md.3940# Using Skills4142## The Rule4344**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.4546```dot47digraph skill_flow {48"User message received" [shape=doublecircle];49"About to EnterPlanMode?" [shape=doublecircle];50"Already brainstormed?" [shape=diamond];51"Invoke brainstorming skill" [shape=box];52"Might any skill apply?" [shape=diamond];53"Invoke Skill tool" [shape=box];54"Announce: 'Using [skill] to [purpose]'" [shape=box];55"Has checklist?" [shape=diamond];56"Create TodoWrite todo per item" [shape=box];57"Follow skill exactly" [shape=box];58"Respond (including clarifications)" [shape=doublecircle];5960"About to EnterPlanMode?" -> "Already brainstormed?";61"Already brainstormed?" -> "Invoke brainstorming skill" [label="no"];62"Already brainstormed?" -> "Might any skill apply?" [label="yes"];63"Invoke brainstorming skill" -> "Might any skill apply?";6465"User message received" -> "Might any skill apply?";66"Might any skill apply?" -> "Invoke Skill tool" [label="yes, even 1%"];67"Might any skill apply?" -> "Respond (including clarifications)" [label="definitely not"];68"Invoke Skill tool" -> "Announce: 'Using [skill] to [purpose]'";69"Announce: 'Using [skill] to [purpose]'" -> "Has checklist?";70"Has checklist?" -> "Create TodoWrite todo per item" [label="yes"];71"Has checklist?" -> "Follow skill exactly" [label="no"];72"Create TodoWrite todo per item" -> "Follow skill exactly";73}74```7576## Red Flags7778These thoughts mean STOP—you're rationalizing:7980| Thought | Reality |81|---------|---------|82| "This is just a simple question" | Questions are tasks. Check for skills. |83| "I need more context first" | Skill check comes BEFORE clarifying questions. |84| "Let me explore the codebase first" | Skills tell you HOW to explore. Check first. |85| "I can check git/files quickly" | Files lack conversation context. Check for skills. |86| "Let me gather information first" | Skills tell you HOW to gather information. |87| "This doesn't need a formal skill" | If a skill exists, use it. |88| "I remember this skill" | Skills evolve. Read current version. |89| "This doesn't count as a task" | Action = task. Check for skills. |90| "The skill is overkill" | Simple things become complex. Use it. |91| "I'll just do this one thing first" | Check BEFORE doing anything. |92| "This feels productive" | Undisciplined action wastes time. Skills prevent this. |93| "I know what that means" | Knowing the concept ≠ using the skill. Invoke it. |9495## Skill Priority9697When multiple skills could apply, use this order:98991. **Process skills first** (brainstorming, debugging) - these determine HOW to approach the task1002. **Implementation skills second** (frontend-design, mcp-builder) - these guide execution101102"Let's build X" → brainstorming first, then implementation skills.103"Fix this bug" → debugging first, then domain-specific skills.104105## Skill Types106107**Rigid** (TDD, debugging): Follow exactly. Don't adapt away discipline.108109**Flexible** (patterns): Adapt principles to context.110111The skill itself tells you which.112113## User Instructions114115Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.116