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 artemisai/pi-mem --plugin claude-memAutomates semantic version bumps across multiple plugin manifests, git tagging, GitHub releases, and changelog generation for Claude Code plugins. Handles build verification and syncs artifacts.
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.