소스 정보
- 저장소
- patrickking67/godmode
- 최근 소스 활동
- 2026년 5월 29일 07:08
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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.