How this skill is triggered — by the user, by Claude, or both
Slash command
/godmode:exorciseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Track down the true root cause of the problem described in `$ARGUMENTS` (a bug report,
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.
npx claudepluginhub patrickking67/godmode --plugin godmodeCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.