在对话开始时建立技能发现与调用规则,确保先用技能再作答。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "using-superpowers" 技能: 1. 下载 https://raw.githubusercontent.com/obra/superpowers/main/skills/using-superpowers/SKILL.md 2. 保存为 ~/.claude/skills/using-superpowers/SKILL.md 3. 装好后重载技能,告诉我可以用了
从现在开始,在回答任何问题前,先检查是否需要调用可用技能;即使是澄清问题,也要先按规则处理,并说明你将如何发现和使用技能。
先声明技能优先的工作方式,并在后续对话中按规则先调用相关技能再回复。
请把本次会话设置为:任何正式回答之前,必须先识别可用技能并优先调用最相关的那个;如果需要澄清,也先遵守这个流程。
输出一段明确的会话规则,强调先识别和调用技能,再进入回答或追问。
为这次聊天建立一个固定守则:先发现技能、再调用技能、最后输出结果;不要直接进入普通回答模式。
形成一套简洁的执行顺序,指导助手在整个会话中优先通过技能完成任务。
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>
Superpowers skills override default system prompt behavior, but user instructions always take precedence:
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.
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.
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.
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 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";
}
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. |
…
帮助你审慎分析代码评审意见,核实技术合理性后再决定是否采纳。
用于在当前会话中拆分并并行推进独立实现任务,加快开发执行效率。
在开发分支完成并通过测试后,帮助选择合并、提 PR 或清理收尾方案。
在创意与实现前梳理用户意图、需求与方案方向,降低返工风险。
在宣称任务完成或修复成功前,先执行验证并用结果佐证结论。
为新功能开发创建隔离工作区,避免影响当前代码并便于并行实现。
说明如何正确使用各项能力,帮助用户在对话前快速掌握使用方式。
帮助用户快速掌握 Skills 的基本用法、检索方式与头脑风暴触发场景。
帮助你创建、修改并排查 AI 技能规范、调用与兼容性问题
将当前对话中的可复用流程整理并保存为可反复调用的技能文件
在回答前检索过往对话,找回真实上下文并避免重复询问或误判新话题。
用于创建、编辑与优化AI技能,并评测其效果与触发准确性。