What problem does it solve? When facing bugs, test failures, or unexpected behavior, developers often jump straight to random fixes that waste hours and mask root causes. This Skill enforces a systematic four-phase debugging process that finds root causes in 15-30 minutes instead of 2-3 hours of thrashing. ## Core Features & Use Cases - Four-Phase Process: Root Cause Investigation, Pattern Analysis, Hypothesis Testing, and Implementation, with a hard gate preventing fixes before investigation completes. - 3-Strike Rule & Self-Regulation Score: Stops runaway fix loops by tracking reverts, unrelated file changes, and repeated errors, forcing a pause to consult the user after failed attempts. - Multi-Agent Debugging: Parallelizes investigation across multiple AI providers via the orchestrate.sh script, examining error messages, recent changes, data flow, and environment simultaneously. - Use Case: When a production API endpoint returns intermittent 500 errors, use this Skill to reproduce the failure, trace data flow across service boundaries, form a single testable hypothesis, and implement one verified fix. ## Quick Start Ask the AI to debug why your test suite is failing and have it follow the systematic four-phase process before proposing any fix.