From 475bbc7fb4ae677f782dc2d25d905f8213085038 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Tue, 2 Jun 2026 22:45:50 -0400 Subject: [PATCH] feat: migrate all skills from Claude session: SKILL.md --- skills/systematic-debugging/SKILL.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 skills/systematic-debugging/SKILL.md diff --git a/skills/systematic-debugging/SKILL.md b/skills/systematic-debugging/SKILL.md new file mode 100644 index 0000000..6fdf9c8 --- /dev/null +++ b/skills/systematic-debugging/SKILL.md @@ -0,0 +1,14 @@ +--- +name: systematic-debugging +description: Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes +--- + +# Systematic Debugging + +## Overview + +Random fixes waste time and create new bugs. Quick patches mask underlying issues. + +**Core principle:** ALWAYS find root cause before attempting fixes. Symptom fixes are failure. + +**Violating the letter of this process is violating the spirit of debugging.**