always-works-testing
Installation
SKILL.md
Always Works™ Testing Philosophy
Distinguish between "should work" (theory) and "does work" (reality) through systematic verification.
Core Principles
- Pattern matching ≠ Solution delivery - Code that looks right isn't the same as code that runs right
- Solve problems, not write code - The goal is working functionality, not elegant untested logic
- Untested code = Guess - Without execution verification, it's speculation
The 30-Second Reality Check
Before claiming something works, answer YES to ALL:
- Did I run/build the code? - Not just read it, actually execute it
- Did I trigger the exact feature I changed? - Not similar code, the specific modification
- Did I see the expected result with my own observation? - Including GUI, terminal output, logs
- Did I check for error messages? - Stderr, console errors, warning logs
- Would I bet $100 this works? - Confidence based on observation, not assumption