Value: Feedback -- systematic investigation produces understanding. Understanding produces correct fixes. Correct fixes prevent recurrence. Skipping investigation produces symptom fixes that hide bugs.
Teaches a disciplined 4-phase debugging process that enforces root cause analysis before any fix attempt. Prevents the most common debugging failure mode: jumping to a fix without understanding why the problem exists.
Never change code to fix a bug until you have completed root cause investigation. When you see an error and immediately know the fix, that is exactly when you are most likely to be wrong. Investigate first.
Systematisches 4-Phasen-Debugging: Den Fehler verstehen, Hypothesen aufstellen, jeweils eine Änderung testen und mit Zuversicht beheben. Aktivieren Sie diese Option, wenn Tests unerwartet fehlschlagen, Fehler auftreten, das Verhalten falsch ist oder etwas, das zuvor funktioniert hat, jetzt nicht mehr funktioniert. Auslöser bei: „Debug“, „Warum schlägt das fehl“, „Testfehler“, „unerwarteter Fehler“, „Fehler“, „kaputt“. Quelle: jwilger/agent-skills.