Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
jeffallan avatar

Debugging Wizard

  • 3.7k installs
  • 10.8k repo stars
  • Updated May 20, 2026
  • jeffallan/claude-skills

debugging-wizard is an agent skill for parse stack traces, correlate logs, and apply hypothesis-driven debugging to isolate failure points.

About

The debugging-wizard skill Parses error messages, traces execution flow through stack traces, correlates log entries to identify failure points, and applies systematic hypothesis-driven methodology to isolate and resolve bugs. Use when investigating errors, analyzing stack traces, finding root causes of unexpected behavior, troubleshooting crashes, or performing log analysis, error investigation, or root cause analysis. Expert debugger applying systematic methodology to isolate and resolve issues in any codebase. 1. Reproduce - Establish consistent reproduction steps 2. Isolate - Narrow down to smallest failing case 3. Hypothesize and test - Form testable theories, verify/disprove each one 4. Fix - Implement and verify solution 5. Prevent - Add tests/safeguards against regression <!-- Systematic Debugging row adapted from obra/superpowers by Jesse Vincent (@obra), MIT License -- Topic Reference Load When ------- ----------- ----------- Debugging Tools references/debugging-tools.md Setting up debuggers by language Common Patterns references/common-patterns.md Recognizing bug patterns Strategies references/strategies.md Binary search, git bisect, time travel Quick Fixes references/q.

  • Reproduce - Establish consistent reproduction steps
  • Isolate - Narrow down to smallest failing case
  • Hypothesize and test - Form testable theories, verify/disprove each one
  • Fix - Implement and verify solution
  • Prevent - Add tests/safeguards against regression

Debugging Wizard by the numbers

  • 3,700 all-time installs (skills.sh)
  • +111 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #22 of 610 Debugging skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

debugging-wizard capabilities & compatibility

Capabilities
reproduce establish consistent reproduction st · isolate narrow down to smallest failing case · hypothesize and test form testable theories, v · fix implement and verify solution · prevent add tests/safeguards against regressio
Use cases
debugging · testing
From the docs

What debugging-wizard says it does

Expert debugger applying systematic methodology to isolate and resolve issues in any codebase.
SKILL.md
1. **Reproduce** - Establish consistent reproduction steps
SKILL.md
2. **Isolate** - Narrow down to smallest failing case
SKILL.md
npx skills add https://github.com/jeffallan/claude-skills --skill debugging-wizard

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs3.7k
repo stars10.8k
Security audit3 / 3 scanners passed
Last updatedMay 20, 2026
Repositoryjeffallan/claude-skills

How do I parse stack traces, correlate logs, and apply hypothesis-driven debugging to isolate failure points with documented agent guidance?

Parse stack traces, correlate logs, and apply hypothesis-driven debugging to isolate failure points.

Who is it for?

Developers who need debugging help during ship work.

Skip if: Skip when the task falls outside Debugging scope described in SKILL.md.

When should I use this skill?

Parse stack traces, correlate logs, and apply hypothesis-driven debugging to isolate failure points.

What you get

Completed debugging workflow aligned with SKILL.md steps and validation.

  • Pattern diagnosis
  • Root-cause explanation
  • Corrected code fix

By the numbers

  • Reproduce - Establish consistent reproduction steps
  • Isolate - Narrow down to smallest failing case
  • Hypothesize and test - Form testable theories, verify/disprove each one

Files

SKILL.mdMarkdownGitHub ↗

Debugging Wizard

Expert debugger applying systematic methodology to isolate and resolve issues in any codebase.

Core Workflow

1. Reproduce - Establish consistent reproduction steps 2. Isolate - Narrow down to smallest failing case 3. Hypothesize and test - Form testable theories, verify/disprove each one 4. Fix - Implement and verify solution 5. Prevent - Add tests/safeguards against regression

Reference Guide

Load detailed guidance based on context:

<!-- Systematic Debugging row adapted from obra/superpowers by Jesse Vincent (@obra), MIT License -->

TopicReferenceLoad When
Debugging Toolsreferences/debugging-tools.mdSetting up debuggers by language
Common Patternsreferences/common-patterns.mdRecognizing bug patterns
Strategiesreferences/strategies.mdBinary search, git bisect, time travel
Quick Fixesreferences/quick-fixes.mdCommon error solutions
Systematic Debuggingreferences/systematic-debugging.mdComplex bugs, multiple failed fixes, root cause analysis

Constraints

MUST DO

  • Reproduce the issue first
  • Gather complete error messages and stack traces
  • Test one hypothesis at a time
  • Document findings for future reference
  • Add regression tests after fixing
  • Remove all debug code before committing

MUST NOT DO

  • Guess without testing
  • Make multiple changes at once
  • Skip reproduction steps
  • Assume you know the cause
  • Debug in production without safeguards
  • Leave console.log/debugger statements in code

Common Debugging Commands

Python (pdb)

python -m pdb script.py          # launch debugger
# inside pdb:
# b 42          — set breakpoint at line 42
# n             — step over
# s             — step into
# p some_var    — print variable
# bt            — print full traceback

JavaScript (Node.js)

node --inspect-brk script.js     # pause at first line, attach Chrome DevTools
# In Chrome: open chrome://inspect → click "inspect"
# Sources panel: add breakpoints, watch expressions, step through

Git bisect (regression hunting)

git bisect start
git bisect bad                   # current commit is broken
git bisect good v1.2.0           # last known good tag/commit
# Git checks out midpoint — test, then:
git bisect good   # or: git bisect bad
# Repeat until git identifies the first bad commit
git bisect reset

Go (delve)

dlv debug ./cmd/server           # build & attach
# (dlv) break main.go:55
# (dlv) continue
# (dlv) print myVar

Output Templates

When debugging, provide: 1. Root Cause: What specifically caused the issue 2. Evidence: Stack trace, logs, or test that proves it 3. Fix: Code change that resolves it 4. Prevention: Test or safeguard to prevent recurrence

Documentation

Related skills

How it compares

debugging-wizard is an agent skill for parse stack traces, correlate logs, and apply hypothesis-driven debugging to isolate failure points, not a generic alternative.

FAQ

Who is debugging-wizard for?

Developers using Debugging workflows with agent-guided SKILL.md steps.

When should I use debugging-wizard?

Parse stack traces, correlate logs, and apply hypothesis-driven debugging to isolate failure points.

Is debugging-wizard safe to install?

Review the Security Audits panel on this page before installing in production.

Debuggingtesting

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.