一键导入
variables
Use when viewing or modifying superpowers-pro plugin variables. Invoke without args to list all variables, or with name and value to change a variable.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when viewing or modifying superpowers-pro plugin variables. Invoke without args to list all variables, or with name and value to change a variable.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | variables |
| description | Use when viewing or modifying superpowers-pro plugin variables. Invoke without args to list all variables, or with name and value to change a variable. |
查看和修改 superpowers-pro 插件变量。
/superpowers-pro:variables — 查看所有变量及当前值/superpowers-pro:variables <name> <value> — 修改变量值digraph variables {
"Has args?" [shape=diamond];
"Run show" [shape=box];
"Run set" [shape=box];
"Validate exit code" [shape=diamond];
"Report error" [shape=box];
"Confirm + apply in session" [shape=box];
"Has args?" -> "Run show" [label="no"];
"Has args?" -> "Run set" [label="yes"];
"Run set" -> "Validate exit code";
"Validate exit code" -> "Report error" [label="non-zero"];
"Validate exit code" -> "Confirm + apply in session" [label="zero"];
}
${CLAUDE_PLUGIN_ROOT}/.claude-plugin/variables.jsonbash "${CLAUDE_PLUGIN_ROOT}/skills/variables/scripts/variables.sh" show <variables-json-path>###修改变量
${CLAUDE_PLUGIN_ROOT}/.claude-plugin/variables.jsonbash "${CLAUDE_PLUGIN_ROOT}/skills/variables/scripts/variables.sh" set <variables-json-path> <name> <value>修改变量后,必须在对话中明确声明:
变量
<name>已修改为<value>。本次会话中<name>的值现在是<value>。
此声明进入对话上下文后,后续行为必须以新值为准,忽略 session-start 注入的旧值。
Use when executing implementation plans with independent tasks in the current session
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
Use when completing tasks, implementing major features, or before merging to verify work meets requirements
Use when starting any conversation - establishes how to find and use skills, requiring skill invocation before ANY response including clarifying questions
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Use when you have a spec or requirements for a multi-step task, before touching code