Claude Code skill for systematic debugging
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:
REQUIRED SUB-SKILL: Use superpowers:root-cause-tracing for 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 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. |
| â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.
This skill requires using:
Complementary skills:
From debugging sessions:
This skill is from obraâs superpowers - a core skills library for Claude Code. These are community-contributed skills that extend Claude Codeâs capabilities.
Original skill: systematic-debugging
Repository: obra/superpowers
License: MIT
Development
Free (MIT)
Specialized agent for actix expert
Expert in Actix for building high-performance web applications with Rust
Expert in Android development, specializing in modern Android practices, optimizing performance, and ensuring robust application architecture.
Expert in Android development, specializing in modern Android practices, optimizing performance, and ensuring robust application architecture. Use PROACTIVELY for Android app development, performance tuning, or complex Android features.
Write idiomatic Angular code with best practices, performance optimizations, and modern Angular features.
Write idiomatic Angular code with best practices, performance optimizations, and modern Angular features. Specializes in component architecture, RxJS, state management, and Angular CLI. Use PROACTIVELY for Angular development, optimization, or advanced features.
Discover more AI and automation tools in The Stockyard
Browse All Resources