From absolutpowers
Systematic debugging process — root cause investigation before any fixes. 4 phases: root cause, pattern analysis, hypothesis testing, implementation. TRIGGER when: bug report, error message, test failure, "nie dziala", unexpected behavior, stack trace, CI failure, regression, crash, exception, "why does X return Y", flaky test, performance degradation, "something broke", "doesn't work".
How this skill is triggered — by the user, by Claude, or both
Slash command
/absolutpowers:debugThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Before starting investigation, also read (if they exist):
Before starting investigation, also read (if they exist):
./absolutpowers/project-memory.md — durable traps, warning signs, and workarounds discovered in earlier tasksUse project memory as prior context, not as a substitute for fresh evidence. If memory conflicts with current evidence, trust the evidence.
Debugging often uncovers high-value lessons, but most raw notes should NOT become permanent memory.
Create a memory candidate only when ALL of these are true:
Do NOT create memory entries for:
When a durable lesson is worth capturing, use:
./absolutpowers/memory-candidates/memory-candidates-YYYY-MM-DD-{slug}.md./absolutpowers/project-memory.mdproject-memory.md should be grouped by module, but each entry must also include explicit affected paths:
## infra/ci
### Signing identity missing inside nested build step
- Problem: workflow secret exists, but nested script cannot see it
- Symptoms: signing fails only in CI, env looks correct in top-level workflow
- Root cause: env var was never passed into the nested build invocation
- Resolution: forward the variable explicitly through the wrapper script
- Warning signs:
- secret shows as set in workflow logs
- nested process prints env as missing
- Affected paths:
- `.github/workflows/release.yml`
- `scripts/build-release.sh`
Candidate file template:
# Memory Candidate: [Short title]
## Status
Candidate — YYYY-MM-DD
## Source
- Skill: debug
- Context: [bug / failing test / CI issue]
## Module
`path/to/module`
## Problem
...
## Symptoms
...
## Root Cause
...
## Resolution
...
## Warning Signs
- ...
## Affected Paths
- `path/to/file`
## Why This May Matter Again
...
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
If you haven't completed Phase 1, you cannot propose fixes.
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
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:
Find the pattern before fixing:
Find Working Examples
Compare Against References
Identify Differences
Understand Dependencies
Scientific method:
Form Single Hypothesis
Test Minimally
Verify Before Continuing
When You Don't Know
Fix the root cause, not the symptom:
Create Failing Test Case
Implement 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 the user 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)
| 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. |
| "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, check changes, gather evidence | Understand WHAT and WHY |
| 2. Pattern | Find working examples, compare | Identify differences |
| 3. Hypothesis | Form theory, test minimally | Confirmed or new hypothesis |
| 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.
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 pollingAfter the debugging session is complete:
./absolutpowers/memory-candidates/memory-candidates-YYYY-MM-DD-{slug}.md./absolutpowers/project-memory.mdPromotion rules:
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub absolutsystems/absolutpowers --plugin absolutpowers