| name | release-manager |
| description | Manage the full release lifecycle — version bump, changelog, tag, and release notes. Use when the user asks to prepare, create, or publish a release. |
Skill: Release Manager
Orchestrate the complete release workflow from version bump through tagging and release notes.
Trigger
When the user asks to create a release, bump version, tag a release, or publish release notes.
Prerequisites
Steps
Step 1: Determine Release Type
| Commits Include | Bump | Example |
|---|
BREAKING CHANGE or ! | Major | 1.0.0 → 2.0.0 |
feat | Minor | 1.0.0 → 1.1.0 |
fix, perf, refactor only | Patch | 1.0.0 → 1.0.1 |
Step 2: Update Version
Step 3: Generate Changelog
Step 4: Create Release Commit
git add package.json package-lock.json CHANGELOG.md
git commit -m "chore(release): vX.Y.Z"
Step 5: Create Git Tag
git tag -a vX.Y.Z -m "Release vX.Y.Z"
Step 6: Generate Release Notes
Format for GitHub Release:
## What's Changed
### Highlights
- [Key feature or fix — 1 sentence each]
### Added
- feat(scope): description (#PR)
### Fixed
- fix(scope): description (#PR)
### Breaking Changes
- Description of what broke and migration steps
**Full Changelog**: https://github.com/org/repo/compare/vPREV...vX.Y.Z
Step 7: Push & Publish
Step 8: Post-Release
Rules
- ALWAYS confirm version bump with user before executing
- ALWAYS run on clean working tree (no uncommitted changes)
- NEVER release from a feature branch
- NEVER skip changelog generation
- NEVER include secrets or internal URLs in release notes
- Follow semver strictly — breaking changes = major bump
- Tag format:
vX.Y.Z (with v prefix)
Completion
Version bumped, changelog updated, tag created, release notes published. CI/CD triggered for deployment.
If a Step Fails
- Dirty working tree: Stash or commit changes first
- Tag already exists: Verify version, use next available
- Push fails: Check branch protection rules and permissions
- CI fails on tag: Fix forward with a patch release, don't delete the tag