Systematic debugging workflow: reproduce, isolate, fix, verify
PROSE constraints: Reduced Scope (narrow the problem systematically) + Progressive Disclosure (gather context incrementally).
$ARGUMENTS for error messages, stack traces, or symptom descriptionsnpm test -- [relevant-test]git log --oneline -20STOP: Present the root cause analysis and proposed fix. Wait for confirmation.
npm test -- [test-file]npm testnpm run lint## Bug Fix: [title]
### Root Cause
[What was wrong and why]
### Fix
[What was changed]
### Files Modified
- [file] — [change description]
### Verification
- [test] — passes
- Full suite — no regressions