release-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 release-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.testing
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
development
TypeScript project conventions. Auto-load when editing *.ts or *.tsx files.
development
Use when writing or fixing PHP code, implementing classes, traits, or interfaces, applying PSR standards, or working with PHP 8.3+ patterns like readonly properties, enums, named arguments, match expressions, and union types.
tools
Next.js 15 App Router project conventions. Auto-load when working in app/, src/app/, components/, server actions, or route handlers.