What problem does it solve? Random fixes and guess-and-check patching waste time, mask underlying issues, and introduce new bugs. This Skill enforces a disciplined four-phase 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 testing, and implementation, with mandatory completion checklists per phase. - Rule of Three: After three failed fix attempts, the process stops and questions the underlying architecture instead of attempting a fourth fix. - Red Flag Detection: Lists rationalizations and anti-patterns ("quick fix for now", "just try changing X") that signal a return to Phase 1 is required. - Use Case: A test suite fails after a dependency upgrade. Instead of patching the assertion, follow Phase 1 to reproduce the failure, check recent git changes, trace the data flow, and isolate the actual breaking component before writing a regression test and fix. ## Quick Start Use the systematic-debugging skill to investigate why the login integration test fails and find the root cause before proposing any fix.