Debug Helper

Systematic logic error isolation.

udapy 1d198e8 681 B Updated

File contents

  1. Reproduction:
    • Can you write a test case that fails?
    • If not, create a minimal reproducible example (MRE).
  2. Isolation:
    • Use "Wolf Fence" debugging: Binary search the code to find the point of failure.
    • Insert dbg!() macros (better than println!).
  3. Resolution: - Once isolated, fix the logic. - Remove all dbg!() calls before final commit.

udapy/rust-agentic-skills/tree/main/skills/general-debug commit 1d198e8800

Frequently asked questions

npx skillmds@latest add udapy/debug-helper