debug
You MUST use this skill any time you are investigating a bug/unintended behaviour, before proposing fixes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
You MUST use this skill any time you are investigating a bug/unintended behaviour, before proposing fixes
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when handed a set/batch of iterations, plans, or work slices to carry out end to end in one run — multiple iteration/story IDs to execute, ordered by blocking edges, each with review, commit, and doc-status transitions, until the whole set is done. lazyspec or any DAG-backed backlog.
Interview the user relentlessly about a plan or design. Use when the user wants to plan/design a system, break down a problem, or asks an open question.
You MUST use this skill when authoring an iteration, work slice, or "iteration document" that hands a bounded unit of work to a coding agent — drawn from a story, card, spec, or backlog. Symptoms include an iteration that bundles several acceptance criteria, restates a spec it links to, or won't finish in one agent session.
You MUST use when writing a story/user story; when decomposing a system, feature, epic, requirement, or spec into a backlog of user stories, or whenever about to write user stories or acceptance criteria during planning. Symptoms include "break this into stories", "write the backlog", "split this epic", stories that feel too big to estimate, or technical tasks masquerading as stories.
Use when comparing a running web UI against its intended design (Figma mockups or reference screenshots), reviewing visual/layout/spacing/typography fidelity of a page, component, or interaction, or when a design-vs-build diff is needed before shipping or to feed a fix loop.
Use when adding, installing, upgrading, or pinning a package/library in any language, choosing which version to use, or when install commands fail with externally-managed-environment, SSL/certificate, DNS (gaierror), or connection errors inside a sandbox.
| name | debug |
| description | You MUST use this skill any time you are investigating a bug/unintended behaviour, before proposing fixes |
Random fixes waste time and create new bugs. Quick patches mask underlying issues.
Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure.
Violating the letter of this process is violating the spirit of debugging.
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
NO CODE CHANGES WITHOUT REPRODUCING THE FAILURE FIRST
NO EDITS AFTER DIAGNOSIS WITHOUT USER GO-AHEAD
If you haven't completed Phase 1, you cannot propose fixes. If you haven't reproduced the failure, you cannot change code — you have no oracle to tell a fix from a coincidence. When the evidence forces a single root cause, STOP and hand back before editing (see "The Diagnosis Gate").
Use for ANY technical issue:
Use this ESPECIALLY when:
Don't skip when:
You MUST complete each phase before proceeding to the next.
BEFORE attempting ANY fix:
Read Error Messages Carefully
Reproduce Consistently — this is your measurement instrument
Check Recent Changes
Gather Evidence in Multi-Component Systems
WHEN system has multiple components (CI → build → signing, API → service → database):
BEFORE proposing fixes, add diagnostic instrumentation:
For EACH component boundary:
- Log what data enters component
- Log what data exits component
- Verify environment/config propagation
- Check state at each layer
Run once to gather evidence showing WHERE it breaks
THEN analyze evidence to identify failing component
THEN investigate that specific component
Example (multi-layer system):
# Layer 1: Workflow
echo "=== Secrets available in workflow: ==="
echo "IDENTITY: ${IDENTITY:+SET}${IDENTITY:-UNSET}"
# Layer 2: Build script
echo "=== Env vars in build script: ==="
env | grep IDENTITY || echo "IDENTITY not in environment"
# Layer 3: Signing script
echo "=== Keychain state: ==="
security list-keychains
security find-identity -v
# Layer 4: Actual signing
codesign --sign "$IDENTITY" --verbose=4 "$APP"
This reveals: Which layer fails (secrets → workflow ✓, workflow → build ✗)
Trace Data Flow
WHEN error is deep in call stack:
See root-cause-tracing.md in this directory for the complete backward tracing technique.
Quick version:
Narrow by Bisection — turn linear search into logarithmic
Let n be the size of the space the defect could live in: commits since it last worked, lines along the failing path, elements of an input, events in a log. Checking candidates one by one is O(n). Splitting the space and asking "is the bug in this half?" is O(log n) — for 1,000 commits, ~10 questions instead of 1,000.
git bisect run <test> finds the introducing commit automatically given a script that exits 0/non-zero. First thing to reach for on a regression with a known-good past.ddmin). Which half still triggers it? Recurse. Also how you reach a minimal repro.Bisection needs two things: a reliable verdict at each step (your repro) and a monotone space (a known-good and known-bad end). Establish both before splitting.
Find the pattern before fixing:
Find Working Examples
Compare Against References
Identify Differences
Understand Dependencies
Scientific method:
Form Single Hypothesis
Predict Before You Run
Test Minimally
Verify Before Continuing
When You Don't Know
Isolating the root cause and choosing the repair are different acts. Gate the change.
The diagnosis is forced — the evidence converges on one mechanism and you don't get a vote. The fix is not: a single defect usually admits several valid repairs (patch the source, change the contract, redesign the path that allowed the bad state, fix the instance vs. the whole class), differing in scope, risk, and blast radius. That choice belongs to the user.
When the loop reaches a diagnosis, STOP and hand back before editing. Report:
Then wait for go-ahead. Two payoffs: a wrong diagnosis is caught here, on paper, before any code churn (orders of magnitude cheaper than after a fix that didn't take); and the user may hold context you don't (fix belongs elsewhere, the class matters more than the instance, this path is being rewritten anyway).
This is a checkpoint, not a reason to stop investigating early. The gate is the moment the evidence forces a single mechanism — not the first plausible hypothesis, not an untested hunch. Reach a real diagnosis, then pause. If the user said "diagnose and fix in one go," honor that; absent that, default to stopping.
Fix the root cause, not the symptom:
Create Failing Test Case
superpowers:test-driven-development skill for writing proper failing testsImplement Single Fix
Verify Fix
If Fix Doesn't Work
If 3+ Fixes Failed: Question Architecture
Pattern indicating architectural problem:
STOP and question fundamentals:
Discuss with your human partner before attempting more fixes
This is NOT a failed hypothesis - this is a wrong architecture.
If you catch yourself thinking:
ALL of these mean: STOP. Return to Phase 1.
If 3+ fixes failed: Question the architecture (see Phase 4.5)
Watch for these redirections:
When you see these: STOP. Return to Phase 1.
| Excuse | Reality |
|---|---|
| "Issue is simple, don't need process" | Simple issues have root causes too. Process is fast for simple bugs. |
| "Emergency, no time for process" | Systematic debugging is FASTER than guess-and-check thrashing. |
| "Just try this first, then investigate" | First fix sets the pattern. Do it right from the start. |
| "I'll write test after confirming fix works" | Untested fixes don't stick. Test first proves it. |
| "Multiple fixes at once saves time" | Can't isolate what worked. Causes new bugs. |
| "Reference too long, I'll adapt the pattern" | Partial understanding guarantees bugs. Read it completely. |
| "I see the problem, let me fix it" | Seeing symptoms ≠ understanding root cause. |
| "I'll just edit and see if the bug goes away" | No repro = no oracle. You can't tell a fix from a coincidence. Reproduce first. |
| "Diagnosis is obvious, I'll fix it now" | The fix is the user's call — scope/risk/blast radius differ. Report at the gate, get go-ahead. |
| "One more fix attempt" (after 2+ failures) | 3+ failures = architectural problem. Question pattern, don't fix again. |
| Phase | Key Activities | Success Criteria |
|---|---|---|
| 1. Root Cause | Read errors, reproduce (deterministic + minimal), check changes, gather evidence, bisect | Understand WHAT and WHY |
| 2. Pattern | Find working examples, compare | Identify differences |
| 3. Hypothesis | Form theory, predict outcomes, test minimally | Confirmed or new hypothesis |
| Diagnosis Gate | Report root cause + proposed fix, get go-ahead | User approves before edits |
| 4. Implementation | Create test, fix, verify | Bug resolved, tests pass |
If systematic investigation reveals issue is truly environmental, timing-dependent, or external:
But: 95% of "no root cause" cases are incomplete investigation.
These techniques are part of systematic debugging and available in this directory:
root-cause-tracing.md - Trace bugs backward through call stack to find original triggerdefense-in-depth.md - Add validation at multiple layers after finding root causecondition-based-waiting.md - Replace arbitrary timeouts with condition pollingRelated skills:
From debugging sessions: