skills/coverage-check/SKILL.md
Before opening a PR, check whether the changed logic has test coverage and surface any gaps
npx skillsauth add stevenmburns/dot-claude-files pre-pr-checkInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze the changes on the current branch against main and check whether the modified logic has corresponding tests.
git diff main...HEAD --name-only to get the list of changed filesgit diff main...HEAD to understand what logic actually changed — focus on non-trivial changes (skip config, lockfiles, markup-only changes, etc.)*.test.ts alongside source, test_*.py in a tests/ directory)/add-tests) or proceed to /create-pr anyway — do not block, just make the gaps explicittools
Scan open GitHub issues, flag duplicates, and summarize with suggested priorities
testing
Interactively clean up the current branch's commits (squash fixups, reword sloppy messages, reorder, drop) before merging — especially important on repos using rebase-merge where every branch commit lands on main verbatim
tools
Analyze the changes in the current PR and suggest a more accurate title if the current one no longer fits
data-ai
Merge the open PR for the current branch into main, delete the branch, and pull main