What problem does it solve?
Four-mantra debugging discipline — reproduce, trace the fail path, falsify the hypothesis, cross-reference every breadcrumb. Recite the mantra block verbatim at the start of any debugging session, then apply the four steps in order before proposing any fix. Trigger on /debug-mantra and proactively whenever debugging starts — user reports a bug, says something is broken/throwing/failing, asks to debug/diagnose/investigate an issue, or pastes a stack trace or error log.
Core Features & Use Cases
- Reproduce reliably: Build a runnable repro before anything else.
- Know the fail path: Trace the code path end-to-end and list knobs that can influence the outcome.
- Falsify the hypothesis: Generate 3–5 ranked hypotheses and test disproof before committing.
- Every run is a breadcrumb: Maintain a ledger of experiments and outcomes across the session.
Quick Start
Start a debug session, recite the mantra verbatim, then follow the four steps in order for the issue at hand.