From 9b9ea756d206360f250071fd643a4e29a18bc5d0 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Tue, 2 Jun 2026 22:45:51 -0400 Subject: [PATCH] feat: migrate all skills from Claude session: SKILL.md --- skills/test-driven-development/SKILL.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 skills/test-driven-development/SKILL.md diff --git a/skills/test-driven-development/SKILL.md b/skills/test-driven-development/SKILL.md new file mode 100644 index 0000000..02ec6bc --- /dev/null +++ b/skills/test-driven-development/SKILL.md @@ -0,0 +1,14 @@ +--- +name: test-driven-development +description: Use when implementing any feature or bugfix, before writing implementation code +--- + +# Test-Driven Development (TDD) + +## Overview + +Write the test first. Watch it fail. Write minimal code to pass. + +**Core principle:** If you didn't watch the test fail, you don't know if it tests the right thing. + +**Violating the letter of the rules is violating the spirit of the rules.**