propose-tests
Installation
SKILL.md
Propose tests only. Do not write, edit, or run tests unless the user asks.
Scope
All changes on the branch - committed, staged, and unstaged:
git diff --name-status "$(git merge-base HEAD origin/main)"...HEAD
git diff --cached --name-status
git diff --name-status
Read full diffs for changed application code (skip lockfiles, generated assets, and pure config unless behavior changed):
git diff "$(git merge-base HEAD origin/main)"...HEAD
git diff --cached
git diff