kernel-testing
Installation
SKILL.md
Tests verify behavior, not implementation. A test that passes when behavior is broken is worse than no test.
Standards
Use the repo's actual test runner, helpers, and conventions unless the task is explicitly about changing them.
This skill owns test design and test quality:
- what kind of test to write
- where the test should live
- what behavior the test should assert
- how to choose between mocks, fakes, and real dependencies
- how to make tests reliable, readable, and maintainable
kernel-build owns pipeline execution and first-pass failure triage. kernel-testing owns whether the tests themselves are well-designed.