Gh release
Cut a GitHub release with the gh CLI, using changelog or auto-generated notes. Use when tagging and publishing a release. Pairs with the changelog skill.From its SKILL.md
npx -y skills add K95M65/AI_ONBOARD --skill gh-releaseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.1 KB, 248 tokens by cl100k_base, as published. Nobody here has run it
GitHub release
Steps
- Assemble notes with the
changelogskill (save toRELEASE-NOTES.md), or let GitHub generate them. - Create the tag + release:
gh release create v<x.y.z> --title "v<x.y.z>" --notes-file RELEASE-NOTES.md- Auto notes instead:
--generate-notes. - Pre-release:
--prerelease. Draft:--draft. - Attach build artifacts:
gh release create v<x.y.z> ./dist/* --notes-file RELEASE-NOTES.md.
- Auto notes instead:
- Verify:
gh release view v<x.y.z> --web.
Versioning (SemVer)
- major — breaking changes (the
changelogbreaking section drives this). - minor — new features, backward-compatible.
- patch — fixes only.
Notes
- Tag the intended commit — releases are awkward to unpublish cleanly.
- Never move or reuse a published tag; cut a new patch instead.
- Releasing from CI:
ghusesGITHUB_TOKEN; ensure it hascontents: write.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.