What problem does it solve?
The skill keeps fixes tightly scoped to the reported issue so that teams avoid scope creep, unintended regressions, and unrelated refactors while preserving accountability.
Core Features & Use Cases
- Allowed vs Not Allowed Checklist: Distinct lists prevent agents from deviating into new features or unrelated experiments while fixing the bug.
- Quality Requirements: Mandating minimal diffs, regression tests, root-cause fixes, and isolation ensures reliability even under time pressure.
- Debugging Process Workflow: The reproduce, isolate, fix, test, verify sequence builds a reproducible habit that guides every fix.
- Use Case: When a production regression emerges, apply these constraints so the change only touches the faulty module, adds a regression test, and leaves other subsystems untouched.
Quick Start
Align my next bug fix to the Bugfix Scope boundaries by focusing only on reproducing the report, isolating the root cause, and delivering a minimal patch plus regression test.