Diagnose and fix implementation errors from stack traces, identify root cause, apply minimum effective fixes, and validate with lint/format/build/test loops until green. Use for debugging and defect resolution tasks.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Diagnose and fix implementation errors from stack traces, identify root cause, apply minimum effective fixes, and validate with lint/format/build/test loops until green. Use for debugging and defect resolution tasks.
Bug Fix
Steps
Read the error and stack trace carefully, then inspect the related files and
code to identify a concrete root cause.
If root cause cannot be identified because required information is missing,
report exactly what is missing to the developer.
Choose the minimum but effective method to solve that root cause.
Apply the fix.
Run lint, format, build, and test (when available), then verify all tests
pass.
If tests fail, use the new failure as input and restart this flow from
step 1.