安装方式
手动下载安装
下载 ZIP 后解压到技能目录即可安装。若在桌面客户端 WebView中直接下载出现异常,本站会改为提示页 + 原始链接,请按页内说明操作。
下载 ZIP (oss-superpowers-using-superpowers-v1.0.0.zip)触发指令
/using-superpowers
跨平台安装指引
该技能声明兼容以下 1 个平台,将 ZIP 解压到对应目录即可被识别。
unzip oss-superpowers-using-superpowers-v1.0.0.zip -d ~/.claude/skills/
mkdir -p 创建;启用 Skill 后请重启对应 Agent 让配置生效。
使用指南
使用 Superpowers 技能
若技能适用于当前任务,没有商量余地,必须用。
不可通过「自我合理化」绕过。 </EXTREMELY-IMPORTANT>
指令优先级
Superpowers 技能可覆盖默认系统行为,但 用户显式指令永远最高:
- 用户明确说明(CLAUDE.md、GEMINI.md、AGENTS.md、直接要求)
- Superpowers 技能
- 默认系统提示
若用户写「不要用 TDD」,即使技能要求 TDD,也 听用户的。
如何加载技能
- Claude Code: 用
Skill工具;加载后 按技能正文执行。不要用 Read 去读技能文件。 - Gemini CLI:
activate_skill等机制。 - 其他环境: 查各平台文档。
平台差异
技能里工具名以 Claude Code 为准;其他平台见 references/codex-tools.md 等映射。
使用技能的规则
在回复或行动之前,先加载可能相关的技能。哪怕只有 1% 可能,也应加载核对;若发现不适用可再放下。
(流程图逻辑:收到用户消息 → 是否可能适用技能 → 是则 Skill 工具 → 宣告「正使用某技能做某事」→ 若有清单则 TodoWrite 逐项 → 严格按技能执行 → 再回复含澄清在内的内容。)
危险想法(说明你在找借口)
| 想法 | 事实 | |------|------| | 「只是个小问题」 | 提问也是任务,要查技能。 | | 「先要更多上下文」 | 技能检查 优先于 澄清问题。 | | 「先快速看下代码」 | 技能告诉你 如何 探索;先查技能。 | | 「先跑 git」 | 文件没有对话上下文;先查技能。 | | 「先收集信息」 | 技能定义 如何 收集;先查技能。 | | 「不用正式技能吧」 | 有技能就用。 | | 「我记得这技能」 | 技能会更新;读当前版。 | | 「不算任务」 | 有动作就是任务。 | | 「技能小题大做」 | 简单事也会变复杂;用技能防失控。 | | 「我先干一点再…」 | 任何动作前 先查技能。 | | 「这样很高效」 | 无纪律的「高效」常浪费;技能是约束。 | | 「我懂这个概念」 | 懂概念 ≠ 按技能执行;要 调用。 |
多技能时的顺序
- 流程类优先(头脑风暴、调试)— 决定 怎么做
- 实现类其次(frontend-design、mcp-builder)— 决定 怎么写
「我们来做 X」→ 先头脑风暴,再实现技能。
「修这个 Bug」→ 先系统调试,再领域技能。
技能类型
刚性(如 TDD、调试流程):严格遵守,不要「灵活掉」纪律。
柔性(模式类):原则可依语境调整。技能正文会暗示类型。
用户指令
用户说 做什么,没说 怎么做。「加功能 X」不代表可以跳过工作流。
<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
**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 Copilot CLI:** Use the `skill` tool. Skills are auto-discovered from installed plugins. The `skill` tool works the same as Claude Code's `Skill` tool.
**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 use Claude Code tool names. Non-CC platforms: see `references/copilot-tools.md` (Copilot CLI), `references/codex-tools.md` (Codex) for tool equivalents. 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.
```dot
digraph skill_flow {
"User message received" [shape=doublecircle];
"About to EnterPlanMode?" [shape=doublecircle];
"Already brainstormed?" [shape=diamond];
"Invoke brainstorming skill" [shape=box];
"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];
"About to EnterPlanMode?" -> "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 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.