Automatically updates plugin version numbers in configuration files based on semantic versioning rules.

Install

mkdir -p .claude/skills/version-bumper && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4783" && unzip -o skill.zip -d .claude/skills/version-bumper && rm skill.zip

Installs to .claude/skills/version-bumper

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Execute automatically handles semantic version updates across plugin.json
73 charsno explicit “when” trigger
Beginner

Key capabilities

  • Calculate semantic version increments
  • Update version strings in plugin.json
  • Synchronize versions in marketplace.extended.json
  • Regenerate marketplace.json catalog
  • Create git tags for releases

How it works

It parses the current version from configuration files, computes the new semver string, updates all relevant files, and triggers a marketplace sync.

Inputs & outputs

You give it
Version bump request and current plugin files
You get back
Updated version files and release summary

When to use version-bumper

  • Bump version after a patch release
  • Increment minor version for new features
  • Update marketplace catalog files
  • Ensure consistency across plugin.json files

About this skill

Version Bumper

Overview

Automates semantic version bumps across all version-bearing files in a Claude Code plugin. Ensures consistency between plugin.json, marketplace.extended.json, and the generated marketplace.json catalog.

Prerequisites

  • jq installed and available on PATH for JSON manipulation
  • Read/write access to .claude-plugin/plugin.json and .claude-plugin/marketplace.extended.json
  • pnpm run sync-marketplace available at the repository root
  • Git installed for optional tag creation

Instructions

  1. Identify the target plugin directory and read the current version from .claude-plugin/plugin.json using jq -r '.version'.
  2. Determine the bump type (major, minor, or patch) from the user request. If unspecified, infer from the nature of changes: breaking changes warrant major, new features warrant minor, and fixes warrant patch.
  3. Parse the current version into its major.minor.patch components and compute the new version according to semver rules (see ${CLAUDE_SKILL_DIR}/references/version-bump-process.md).
  4. Update the "version" field in .claude-plugin/plugin.json with the new version string.
  5. Locate the plugin entry in .claude-plugin/marketplace.extended.json and update its "version" field to match (see ${CLAUDE_SKILL_DIR}/references/update-locations.md).
  6. Run pnpm run sync-marketplace at the repository root to regenerate marketplace.json.
  7. Verify version consistency across all three files by reading each and confirming the version strings match.
  8. Optionally create a git tag (git tag -a "v<new_version>" -m "Release v<new_version>") and prepare a commit message following the chore: Release v<version> convention (see ${CLAUDE_SKILL_DIR}/references/release-workflow.md).

Output

A version bump execution summary containing:

  • The computed transition (old_version to new_version)
  • The exact files updated: .claude-plugin/plugin.json, .claude-plugin/marketplace.extended.json, and regenerated .claude-plugin/marketplace.json
  • Validation confirmation that all files carry the same version
  • Suggested next commands (git add, git commit, git tag, validation scripts)

Error Handling

ErrorCauseSolution
jq: command not foundjq not installedInstall via apt install jq or brew install jq
Version format invalidNon-semver string in plugin.jsonCorrect to x.y.z format before bumping
Plugin not found in marketplaceMissing catalog entryAdd the plugin to marketplace.extended.json first
Sync marketplace failureSchema mismatch or missing fieldsRun jq empty on both JSON files to locate syntax errors
Version mismatch after syncsync-marketplace did not pick up changesVerify the plugin name in marketplace.extended.json matches plugin.json exactly

Examples

Patch bump for a specific plugin: Trigger: "Bump the security-scanner plugin to patch version" Process: Read current version 1.2.3, compute 1.2.4, update plugin.json and marketplace.extended.json, run sync, verify consistency, report success.

Explicit major release: Trigger: "Release version 2.0.0 of plugin-name" Process: Set version to 2.0.0 in all files, sync marketplace, create git tag v2.0.0, prepare commit with chore: Release v2.0.0.

Feature-based minor bump: Trigger: "Increment version for new feature" Process: Detect minor bump, compute 1.2.3 to 1.3.0, update all version locations, sync, validate, report completion.

Resources

  • ${CLAUDE_SKILL_DIR}/references/version-bump-process.md -- step-by-step bump algorithm
  • ${CLAUDE_SKILL_DIR}/references/update-locations.md -- all files requiring version updates
  • ${CLAUDE_SKILL_DIR}/references/release-workflow.md -- full release process including git tags
  • ${CLAUDE_SKILL_DIR}/references/examples.md -- additional usage scenarios
  • Semantic Versioning specification

Prerequisites

jq installedRead/write access to plugin filespnpm run sync-marketplace availableGit installed

Limitations

  • Requires x.y.z version format
  • Requires plugin entry in marketplace.extended.json

How it compares

It automates cross-file version synchronization and catalog updates instead of manually editing multiple JSON files.

Compared to similar skills

version-bumper side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
version-bumper (this skill)127dReviewBeginner
pptx3936moReviewAdvanced
nano-pdf632moReviewBeginner
video-downloader1017moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

pptx

anthropics

Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks

393763

nano-pdf

openclaw

Edit PDFs with natural-language instructions using the nano-pdf CLI.

63300

video-downloader

ComposioHQ

Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.

101255

youtube-transcript

michalparkola

Download YouTube video transcripts when user provides a YouTube URL or asks to download/get/fetch a transcript from YouTube. Also use when user wants to transcribe or get captions/subtitles from a YouTube video.

68277

using-superpowers

obra

Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creating TodoWrite todos for checklists

95205

browser-automation

browserbase

Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications. Triggers include "browse", "navigate to", "go to website", "extract data from webpage", "screenshot", "web scraping", "fill out form", "click on", "search for on the web". When taking actions be as specific as possible.

39230

Search skills

Search the agent skills registry