verify-with-inline-tests
Installation
SKILL.md
verify-with-inline-tests
When to Use
- Tests should be near the code
- Tests serve as documentation
- Single-file modules
- Quick verification during development
When NOT to Use
- Large test suites
- Need test isolation
- CI/CD expects tests in specific location
The Pattern
Include tests in the module, run them when module is executed directly.