| name | test-runner |
| description | Use when deciding how to validate a change with the smallest reliable local test or check. |
Test Runner
Use this skill after implementation or before risky refactors.
Steps
- Inspect project files for test commands.
- Prefer targeted tests over full suites for narrow changes.
- Run formatting or lint checks when they directly cover the edited files.
- Record the exact commands and results.
- If a test cannot run, state why and what remains unverified.
Notes
Do not invent test coverage.
Validation should match the risk of the change.