What problem does it solve? Debugging often devolves into guesswork and random code changes that mask symptoms instead of fixing root causes. This Skill enforces a disciplined, evidence-driven debugging process so bugs get reproduced, traced, fixed, and prevented from recurring. ## Core Features & Use Cases - Structured Debugging Process: Guides through eight stages from reproduction and evidence gathering to hypothesis testing, root-cause analysis, and regression prevention. - Proven Techniques Library: Covers binary search, rubber duck debugging, print debugging, diff debugging, and git bisect time-travel debugging. - Common Bug Patterns: Provides concrete fixes for null/undefined errors, race conditions, off-by-one errors, type coercion, and missing await issues. - Use Case: When a user reports that login sessions expire immediately, the Skill walks through reproducing the timeout, tracing session cookie configuration, fixing the root cause in the auth flow, and adding a regression test. ## Quick Start Use the bug-hunter skill to systematically debug and fix the login timeout issue in my application.