用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/patrickking67/godmode --skill exorcise命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | exorcise |
| description | Systematically find the root cause of a bug or failing test. |
Track down the true root cause of the problem described in $ARGUMENTS (a bug report,
a failing test name, or pasted error output) and fix it without papering over it.
You cannot fix what you cannot trigger. Establish the exact failing command, input, or
test from $ARGUMENTS and run it yourself:
If you cannot reproduce it, say so plainly and gather more: ask for versions, environment, exact steps, or a minimal example. Do not guess at a fix for a failure you have not seen.
Before touching code, list the few most likely causes (usually two to four). Reason from the error and the stack trace, not from a hunch. Rank them by likelihood and by how cheap they are to check. This list is what keeps you from flailing.
Work top-down through your hypotheses to isolate the smallest failing unit:
State the actual root cause (not the symptom) and explain why it fails: the wrong value, the missing case, the bad assumption, the order of operations. If your explanation does not account for every detail of the observed failure, you are not done. A symptom patched is a bug that returns.
Describe the smallest change that addresses the root cause. Find the real fix rather than bypassing it: never disable a safety check, delete a test, weaken an assertion, or skip a hook to make the error "go away". Apply the fix only if the user wants it. Confirm first before any destructive or hard-to-reverse action.
Prove it is actually fixed:
Report the root cause, the fix, and exactly what you ran to verify. If anything remains uncertain, say so rather than declaring victory.