Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions
Add this skill
npx mdskills install sickn33/using-superpowersMeta-skill enforcing skill discovery and usage but lacks actual capabilities
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<EXTREMELY-IMPORTANT>7If you think there is even a 1% chance a skill might apply to what you are doing, you ABSOLUTELY MUST invoke the skill.89IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.1011This is not negotiable. This is not optional. You cannot rationalize your way out of this.12</EXTREMELY-IMPORTANT>1314## How to Access Skills1516**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.1718**In other environments:** Check your platform's documentation for how skills are loaded.1920# Using Skills2122## The Rule2324**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.2526```dot27digraph skill_flow {28 "User message received" [shape=doublecircle];29 "Might any skill apply?" [shape=diamond];30 "Invoke Skill tool" [shape=box];31 "Announce: 'Using [skill] to [purpose]'" [shape=box];32 "Has checklist?" [shape=diamond];33 "Create TodoWrite todo per item" [shape=box];34 "Follow skill exactly" [shape=box];35 "Respond (including clarifications)" [shape=doublecircle];3637 "User message received" -> "Might any skill apply?";38 "Might any skill apply?" -> "Invoke Skill tool" [label="yes, even 1%"];39 "Might any skill apply?" -> "Respond (including clarifications)" [label="definitely not"];40 "Invoke Skill tool" -> "Announce: 'Using [skill] to [purpose]'";41 "Announce: 'Using [skill] to [purpose]'" -> "Has checklist?";42 "Has checklist?" -> "Create TodoWrite todo per item" [label="yes"];43 "Has checklist?" -> "Follow skill exactly" [label="no"];44 "Create TodoWrite todo per item" -> "Follow skill exactly";45}46```4748## Red Flags4950These thoughts mean STOP—you're rationalizing:5152| Thought | Reality |53|---------|---------|54| "This is just a simple question" | Questions are tasks. Check for skills. |55| "I need more context first" | Skill check comes BEFORE clarifying questions. |56| "Let me explore the codebase first" | Skills tell you HOW to explore. Check first. |57| "I can check git/files quickly" | Files lack conversation context. Check for skills. |58| "Let me gather information first" | Skills tell you HOW to gather information. |59| "This doesn't need a formal skill" | If a skill exists, use it. |60| "I remember this skill" | Skills evolve. Read current version. |61| "This doesn't count as a task" | Action = task. Check for skills. |62| "The skill is overkill" | Simple things become complex. Use it. |63| "I'll just do this one thing first" | Check BEFORE doing anything. |64| "This feels productive" | Undisciplined action wastes time. Skills prevent this. |65| "I know what that means" | Knowing the concept ≠ using the skill. Invoke it. |6667## Skill Priority6869When multiple skills could apply, use this order:70711. **Process skills first** (brainstorming, debugging) - these determine HOW to approach the task722. **Implementation skills second** (frontend-design, mcp-builder) - these guide execution7374"Let's build X" → brainstorming first, then implementation skills.75"Fix this bug" → debugging first, then domain-specific skills.7677## Skill Types7879**Rigid** (TDD, debugging): Follow exactly. Don't adapt away discipline.8081**Flexible** (patterns): Adapt principles to context.8283The skill itself tells you which.8485## User Instructions8687Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows.88
Full transparency — inspect the skill content before installing.