npx claudepluginhub pjt222/agent-almanacThis skill uses the workspace's default tool permissions.
---
Bumps semantic version (patch/minor/major) atomically, updates CHANGELOG.md with changes summary, syncs across files like package.json/pyproject.toml/Cargo.toml, commits. Use for releases.
Automates semver version bumping, changelog generation, git tagging, pushing, and GitHub releases for Node.js, Python, Rust, Go, and generic projects with pre-flight checks and confirmations.
Recommends semver bump (major/minor/patch) with reasoning and changelog entry for design system changes from git diffs, PRs, or descriptions. Classifies breaking, minor, and patch changes.
Share bugs, ideas, or general feedback.
Determine and apply the correct semantic version bump by analyzing changes since the last release. This skill reads version files, classifies changes as breaking (major), feature (minor), or fix (patch), computes the new version number, and updates the appropriate files. Follows SemVer 2.0.0 specification.
Locate and read the version file in the project root.
# R packages
grep "^Version:" DESCRIPTION
# Node.js
grep '"version"' package.json
# Rust
grep '^version' Cargo.toml
# Python
grep 'version' pyproject.toml
# Plain file
cat VERSION
Parse the current version into major.minor.patch components. If the version contains a pre-release suffix (e.g., 1.2.0-beta.1), note it separately.
Expected: Current version identified as MAJOR.MINOR.PATCH[-PRERELEASE].
On failure: If no version file is found, check for a VERSION file or git tags (git describe --tags --abbrev=0). If no version exists at all, start at 0.1.0 for initial development or 1.0.0 if the project has a stable public API.
Retrieve the list of changes since the last tagged release.
# Find the last version tag
git describe --tags --abbrev=0
# List commits since that tag
git log --oneline v1.2.3..HEAD
# If using Conventional Commits, filter by type
git log --oneline v1.2.3..HEAD | grep -E "^[a-f0-9]+ (feat|fix|BREAKING)"
If no tags exist, compare against the initial commit or a known baseline.
Expected: A list of commits with messages that can be classified by change type.
On failure: If git history is unavailable or tags are missing, ask the developer to describe the changes manually. Classify based on their description.
Apply the SemVer classification rules:
| Change Type | Version Bump | Examples |
|---|---|---|
| Breaking (incompatible API change) | MAJOR | Renamed/removed public function, changed return type, removed parameter, changed default behavior |
| Feature (new backwards-compatible functionality) | MINOR | New exported function, new parameter with default, new file format support |
| Fix (backwards-compatible bug fix) | PATCH | Bug fix, documentation correction, performance improvement with same API |
Classification rules:
Special cases:
0.x.y), minor bumps may contain breaking changes. Document clearly.Expected: Each change classified as breaking/feature/fix, and the overall bump level determined.
On failure: If changes are ambiguous, err on the side of a higher bump. A conservative major bump is better than a minor bump that breaks downstream code.
Apply the bump to the current version:
| Current | Bump | New Version |
|---|---|---|
| 1.2.3 | MAJOR | 2.0.0 |
| 1.2.3 | MINOR | 1.3.0 |
| 1.2.3 | PATCH | 1.2.4 |
| 0.9.5 | MINOR | 0.10.0 |
| 2.0.0-rc.1 | (release) | 2.0.0 |
If a pre-release label is requested:
1.3.0-alpha.1 for first alpha of upcoming 1.3.01.3.0-beta.1 for first beta1.3.0-rc.1 for first release candidatePre-release precedence: alpha < beta < rc < (release).
Expected: New version number computed following SemVer rules.
On failure: If the current version is malformed or non-SemVer, normalize it first. For example, 1.2 becomes 1.2.0.
Write the new version to the appropriate file(s).
# R: Update DESCRIPTION
# Change "Version: 1.2.3" to "Version: 1.3.0"
// Node.js: Update package.json
// Change "version": "1.2.3" to "version": "1.3.0"
// Also update package-lock.json if present
# Rust: Update Cargo.toml
# Change version = "1.2.3" to version = "1.3.0"
If the project has multiple files that reference the version (e.g., _pkgdown.yml, CITATION, codemeta.json), update all of them.
Expected: All version files updated consistently to the new version number.
On failure: If a file update fails, revert all changes to maintain consistency. Never leave version files in a partially updated state.
After committing the version bump, create a git tag.
# Annotated tag (preferred)
git tag -a v1.3.0 -m "Release v1.3.0"
# Lightweight tag (acceptable)
git tag v1.3.0
Use the project's established tag format:
v1.3.0 (most common)1.3.0 (no prefix)package-name@1.3.0 (monorepo)Expected: Git tag created matching the new version.
On failure: If the tag already exists, the version was not properly bumped. Check for duplicate tags with git tag -l "v1.3*" and resolve before proceeding.
MAJOR.MINOR.PATCH[-PRERELEASE][+BUILD]+build.123) does not affect version precedence. 1.0.0+build.1 and 1.0.0+build.2 have the same precedence.manage-changelog -- Maintain changelog entries that pair with version bumpsplan-release-cycle -- Plan release milestones that determine when version bumps occurrelease-package-version -- R-specific release workflow that includes version bumpingcommit-changes -- Commit the version bump with a proper messagecreate-github-release -- Create a GitHub release from the version tag