What problem does it solve? Random fixes and guess-and-check patching waste hours, mask underlying issues, and introduce new bugs. This Skill enforces a disciplined debugging process that finds the root cause before any fix is attempted. ## Core Features & Use Cases - Four-Phase Process: Root cause investigation, pattern analysis, hypothesis falsification with an evidence matrix, and tested implementation. - Supporting Techniques: Reference guides for root-cause tracing through call stacks, defense-in-depth validation at multiple layers, and condition-based waiting to fix flaky tests. - Polluter Bisection Script: A bash script that runs tests one-by-one to identify which test creates unwanted files or state. - Use Case: When a CI pipeline fails intermittently, apply the hypothesis tree with 60-second discriminator commands to isolate whether the cause is environmental, logical, or a race condition before writing any fix. ## Quick Start Ask the AI to systematically debug a failing test or bug using root cause investigation instead of guessing at fixes.