release-review
Installation
SKILL.md
Compare two git tags or commits and produce two deployment readiness reports: a QA report for manual testers (user-facing flows, no code details) and a Developer report (technical details, file paths, code snippets where relevant). Both reports identify what must be verified before deploying and flag potential overlooked issues.
Usage:
/release-review v1.2.0 v1.3.0- Analyze changes between two tags/release-review abc1234 def5678- Analyze changes between two commits/release-review v1.2.0 HEAD- Analyze changes from a tag to current HEAD
Instructions:
- Parse positional arguments:
$1= the starting point (exclusive) — typically the last deployed version. Can be a git tag, commit SHA, branch name, orHEAD$2= the endpoint (inclusive) — typically the version about to be deployed. Can be a git tag, commit SHA, branch name, orHEAD- If either
$1or$2is missing, display the following message and STOP:## Missing Arguments Usage: /release-review <base-ref> <target-ref>