From claude-mem
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-mem:version-bumpThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**IMPORTANT:** You must first plan and write detailed release notes before starting the version bump workflow.
IMPORTANT: You must first plan and write detailed release notes before starting the version bump workflow.
CRITICAL: ALWAYS commit EVERYTHING (including build artifacts). At the end of this workflow, NOTHING should be left uncommitted or unpushed. Run git status at the end to verify.
git remote -v).package.json, .claude-plugin/marketplace.json, and plugin/.claude-plugin/plugin.json.grep to ensure all files match the new version.npm run build to generate fresh artifacts.git add -A && git commit -m "chore: bump version to X.Y.Z".git tag -a vX.Y.Z -m "Version X.Y.Z".git push origin main && git push origin vX.Y.Z.gh release create vX.Y.Z --title "vX.Y.Z" --notes "RELEASE_NOTES".CHANGELOG.md using the GitHub API and the provided script:
gh api repos/{owner}/{repo}/releases --paginate | ./scripts/generate_changelog.js > CHANGELOG.md
CHANGELOG.md.npm run discord:notify vX.Y.Z if applicable.git status to ensure a clean working tree.npm run build succeededCHANGELOG.md updated and pushedgit status shows clean treenpx claudepluginhub ryderfreeman4logos/claude-mem --plugin claude-mem8plugins reuse this skill
First indexed Jul 17, 2026
Showing the 6 earliest of 8 plugins
Automates semantic version bumps across multiple manifest files, git tagging, GitHub releases, and changelog generation for Claude Code plugins. Hands off npm publishing to the human maintainer.
Bumps semantic versions (major/minor/patch) for Claude Code plugins, updates plugin.json and marketplace.json, creates git commit and tag. Use after features, bug fixes, or breaking changes.
Automates semantic version updates across plugin.json, marketplace.extended.json, and marketplace.json for Claude Code plugins. Handles major/minor/patch bumps and ensures consistency.