debugging
Installation
SKILL.md
Debugging
Comprehensive debugging methodologies, tools, and techniques across languages and platforms.
Systematic Debugging Methodology
Every debugging session should follow a disciplined, repeatable process. Resist the urge to change code at random.
The Five-Step Process
- Reproduce - Create a reliable way to trigger the bug every time.
- Isolate - Narrow the scope until you find the smallest reproducible case.
- Identify - Determine the root cause, not just the symptom.
- Fix - Apply a targeted correction that addresses the root cause.
- Verify - Confirm the fix works and does not introduce regressions.