What problem does it solve?
It helps you recover from already-occurring failures by turning vague “something broke” situations into a tight loop of evidence preservation, reliable reproduction, root-cause identification, and a minimal fix with regression protection.
Core Features & Use Cases
- Failure-first Debug Orchestration: Ensures the workflow starts with stopping further changes and preserving error outputs, logs, and reproduction steps before any coding continues.
- Root Cause Localization & Minimal Fix: Guides narrowing the failure surface (UI/API/DB/build/external service/test itself), finding the smallest failing case, and fixing the underlying cause rather than symptoms.
- Regression Guard & Recovery Verification: Requires adding guardrails (e.g., tests) when appropriate and completing the smallest end-to-end verification to confirm the system is truly recovered.
Quick Start
Tell the AI: “My tests/build/runtime failed—stop line, preserve the failure evidence, reproduce it stably, locate the root cause, implement the minimal fix, and add regression protection, then run the smallest verification to confirm recovery.”