What problem does it solve? Random fixes and quick patches waste time, mask underlying issues, and introduce new bugs. This Skill enforces a disciplined debugging methodology that finds the actual root cause before any fix is attempted, even under time pressure or social pressure to apply a quick workaround. ## Core Features & Use Cases - Four-Phase Process: Root cause investigation, pattern analysis, hypothesis testing, and verified implementation with mandatory failing test cases. - Supporting Techniques: Includes root-cause tracing through call stacks, defense-in-depth validation at multiple layers, and condition-based waiting to replace flaky arbitrary timeouts. - Anti-Rationalization Guardrails: Red flags, common rationalizations, and eight documented anti-patterns that stop premature fixes, shotgun changes, and symptom patching. - Use Case: When a test fails intermittently in CI, use this Skill to reproduce the failure consistently, trace the bad value to its source, form a single hypothesis, and verify the fix with a failing-then-passing test instead of stacking sleep calls. ## Quick Start Use the systematic-debugging skill to investigate why this test is failing and find the root cause before proposing any fix.