What problem does it solve? When something breaks, the temptation is to patch the first plausible cause, which often masks the real bug and creates regressions. This Skill enforces a disciplined debugging workflow that finds the actual root cause before any code is changed. ## Core Features & Use Cases - Four-Phase Debugging Workflow: Systematically moves through investigate, analyze, hypothesize, and implement phases so fixes are grounded in evidence. - Iron Law Enforcement: Blocks edits until a root cause is identified, using pre-edit hooks that check the debug scope boundary before allowing file changes. - Context-Aware Investigation: Loads prior investigations, project learnings, and past eureka moments from the local gstack knowledge store to avoid re-solving known problems. - Use Case: A user reports "the checkout endpoint returns 500 since yesterday." The Skill gathers logs and stack traces, forms ranked hypotheses, confirms the root cause, and only then applies a minimal fix. ## Quick Start Ask the assistant to investigate why the login endpoint started returning 500 errors after the last deploy.