60-validate-tests-150
Installation
SKILL.md
Validate-Tests 150 Protocol
Goal
Cover current uncommitted changes with meaningful tests at >70% coverage (including the changed lines) and confirm the entire test suite is green.
Workflow
-
Identify current changes
- Check staged and unstaged changes (
git status). - List changed files (
git diff --name-onlyandgit diff --name-only --staged). - Focus testing on these files and their direct dependencies.
- Check staged and unstaged changes (
-
Find the coverage command
- Check
package.jsonscripts fortest,coverage, orci. - If unclear, search for Jest/Vitest config files and default coverage options.
- Check