From arc-probe
Bumps semantic version across three Claude plugin config files: plugin.json, marketplace.json, and arc-probe/plugin.json. Ensures version consistency before releases without committing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/arc-probe:bump-versionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Update the version string in all config files that reference it.
Update the version string in all config files that reference it.
new_version (required): New semantic version (e.g., 0.2.0)plugin/.claude-plugin/plugin.json — "version": "<new_version>"public-repo/.claude-plugin/marketplace.json — plugin entry versionpublic-repo/plugins/arc-probe/.claude-plugin/plugin.json — "version": "<new_version>"grep -r '"version"' plugin/.claude-plugin/plugin.json public-repo/.claude-plugin/marketplace.json public-repo/plugins/arc-probe/.claude-plugin/plugin.json
All three should show "version": "<new_version>".
npx claudepluginhub vzco/arc-probe --plugin arc-probeAutomates semantic version bumps across plugin.json, marketplace.extended.json, and marketplace.json in Claude Code plugins. Triggers on mentions of version bump, update version, or release for consistency.
Synchronizes version numbers across package.json, .claude-plugin/plugin.json, and install-state manifest. Supports explicit version, major, minor, or patch bumps.
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.