ソース情報
- リポジトリ
- patrickking67/godmode
- ソースの最終更新活動
- 2026年5月29日 07:08
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/patrickking67/godmode --skill exorciseコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
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.