git-github-release/SKILL.md
Use when the user wants to publish a new GitHub release, cut a version tag, or ship a new version using semver.
npx skillsauth add paulund/ai git-github-releaseInstall 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.
git fetch --tags, latest five tags via git tag --sort=-v:refname | head -5, and commits since the last tag via git log <last-tag>..HEAD --oneline. If no tags exist, treat the base version as v0.0.0 and show all commits.feat: commit bumps minor.fix:, perf:, chore:, etc. bumps patch.BREAKING CHANGE in body or ! suffix) bumps major.## What's new, ## Bug fixes, and ## Improvements sections (omit any that are empty).git checkout main && git pull origin main
gh release create <version> \
--title "<version>" \
--notes "<approved release notes>" \
--target main
main.--draft or --prerelease unless the user explicitly requests it.development
Use when the user wants to run the project's lint + types + build sequence as a gate before pushing, opening a PR, or merging. Invoked by chained dev skills between phases. Trigger phrases - "/quality-gate", "run the quality gate", "check it builds".
tools
Use when the user wants to verify a PR's feature works at runtime by booting the dev server, exercising the affected UI via Chrome DevTools MCP, and posting a screenshot summary back to the PR. Idempotent — skips if `verified` or `verify-failed` is already on the PR. Trigger phrases - "/pr-verify", "verify this PR", "runtime check the pr".
testing
Use when the user wants a security-focused review pass on a PR with findings actioned as commits on the same branch. Trigger phrases - "/pr-security-review", "security review and fix".
testing
Use when the user wants to open a pull request for an already-pushed branch that implements a specific issue. Idempotent — returns the existing PR if one is already open for the branch. Trigger phrases - "/pr-open", "open the pr", "create pr for this branch".