What problem does it solve? Developers under time pressure often apply quick symptom fixes that fail repeatedly, causing thrashing, flaky tests, and recurring production incidents. This Skill enforces a disciplined debugging methodology that finds the actual root cause before any fix is attempted. ## Core Features & Use Cases - Four-Phase Process: Enforces Root Cause Investigation, Pattern Analysis, Hypothesis Testing, and Implementation in strict order, with explicit stop conditions when fixes fail. - Supporting Techniques: Includes root-cause tracing through call stacks, defense-in-depth validation across four layers, and condition-based waiting to replace flaky arbitrary timeouts in tests. - Bisection Script: Ships a find-polluter.sh script that runs test files one by one to identify which test creates unwanted files or state. - Use Case: When a test fails intermittently or a production bug resists obvious fixes, apply the process to trace the failure to its source, write a failing test, and implement a single verified fix. ## Quick Start Use the systematic-debugging skill to investigate this failing test and find its root cause before suggesting any fix.