Verify test coverage
Skill matusbu/claude-code-test-automation-skills/.claude/skills/verify-test-coverage
Verify test coverage for code changes against the defined test strategy. Use when reviewing a feature branch, commit, or uncommitted changes to ensure adequate test coverage.From its SKILL.md
npx -y skills add matusbu/claude-code-test-automation-skills --skill verify-test-coverageAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.4 KB, 458 tokens by cl100k_base, as published. Nobody here has run it
Verify Test Coverage
Analyze test coverage for code changes and identify gaps based on the test strategy.
Step 1: Detect scope of change
The scope defines which code changes to analyze for test coverage.
Scope options:
- If
$scopeis "uncommitted" or "unstaged": analyze uncommitted changes (git diff HEAD) - If
$scopeis "last-commit": analyze the most recent commit (git diff HEAD~1 HEAD) - If
$scopematches pattern "last-N-commits": analyze last N commits from HEAD - If
$scopeis empty or "branch": analyze diff between current feature branch and main (git diff main...HEAD) - If
$scopeis a custom git range (e.g., "commit1..commit2"): use that range - If
$scopeis unclear or not provided, ask the user what scope they want to analyze
Determine the appropriate git command and execute it to get the diff.
Step 2: Locate test strategy
Look for the test strategy definition to understand what needs to be tested.
Strategy location:
- First, check if
TEST_STRATEGY.mdexists in the repository root - If not found, check
.claude/directory for strategy documentation - If user mentioned a specific strategy in their prompt, use that instead
- If no strategy file found, ask the user where the test strategy is defined
Step 3: Review current test coverage
Based on the code changes from Step 1 and test strategy from Step 2:
- Identify what files were changed and what functionality was added/modified
- Search for existing tests covering those changes
- Compare existing test coverage against the test strategy requirements
- Determine coverage according to the test levels defined in the strategy file
Step 4: Report results and gaps
Provide a summary:
- Scope analyzed: what code changes were reviewed
- Test coverage found: list existing tests covering the changes
- Gaps identified: what's missing based on the test strategy
- Recommendations: specific tests that should be added to close the gaps
If gaps exist, propose concrete test cases that need to be written.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.