version-bump

version-bump is a skill for Claude Code, Codex from henkisdabro/Claude-Code-MCP-Server-Selector. It costs 30 tokens per session (1,067 once invoked), scanned A, original, MIT.

A version-update procedure for changing a software project's semantic version number, such as 2.1.0, in all required files.

In plain words
What is it for?
Use it for version updates without performing the full release, Git, or npm publishing process.
Why use it?
It prevents the package, command-line tool, README, and documentation from showing different versions.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/henkisdabro/claude-code-mcp-server-selector/version-bump
Any agent
npx skills add henkisdabro/Claude-Code-MCP-Server-Selector --skill version-bump
Clone the repo
git clone --depth 1 https://github.com/henkisdabro/Claude-Code-MCP-Server-Selector

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for version-bump

README.md
[![agentmods](https://agentmods.dev/badge/skills/henkisdabro/claude-code-mcp-server-selector/version-bump.svg)](https://agentmods.dev/skills/henkisdabro/claude-code-mcp-server-selector/version-bump)
Your own site
<a href="https://agentmods.dev/skills/henkisdabro/claude-code-mcp-server-selector/version-bump"><img src="https://agentmods.dev/badge/skills/henkisdabro/claude-code-mcp-server-selector/version-bump.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,067 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.01067
Opus 5 $0.00015 $0.00534
Sonnet 5 $0.00006 $0.00213
Haiku 4.5 $0.00003 $0.00107

Measured 5d ago against content hash f2e8c77b0c53, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

version-bump scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/version-bump/SKILL.md · 156 lines

How it starts

The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Version Bump Skill

Updates semantic version consistently across all project files. This skill handles version updates only - use /release for the full release workflow including git and npm publishing.

Trigger Words

Use when user says: "bump version", "update version", "version bump", or when called by the release skill.

Version Locations (Canonical List)

These are ALL locations where version numbers appear. Every bump MUST update all of these:

Primary Sources

File Line Pattern Example
package.json 3 "version": "X.Y.Z" "version": "2.1.0"
src/cli/index.ts 18 const VERSION = 'X.Y.Z'; const VERSION = '2.1.0';

Documentation

File Line Pattern Example
README.md 12 > **vX.Y.Z**: > **v2.1.0**:
docs/index.html 45 "softwareVersion": "X.Y.Z" "softwareVersion": "2.1.0"

Auto-generated (DO NOT edit manually)

File Notes
package-lock.json Updated by npm install --package-lock-only

Procedure

Step 1: Determine New Version

Ask user or determine from context:

Type Pattern When to Use
patch X.Y.Z+1 Bug fixes, minor changes
minor X.Y+1.0 New features, backwards compatible
major X+1.0.0 Breaking changes

Or accept explicit version like "2.1.0".

Step 2: Read Current Version

node -p "require('./package.json').version"

Step 3: Update All Locations (IN ORDER)

  1. package.json (line 3):

    "version": "NEW_VERSION",
    
  2. src/cli/index.ts (line 18):

    const VERSION = 'NEW_VERSION';
    
  3. README.md (line 12):

    > **vNEW_VERSION**: [brief description of changes]
    
  4. docs/index.html (line 45):

    "softwareVersion": "NEW_VERSION",
    

Step 4: Update Lock File

npm install --package-lock-only

Read the full file on GitHub · 156 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 156 lines · 30 tokens per session scan A f2e8c77b0c53

Subscribe to this mod's changes

version-bump is a skill published in the GitHub repository henkisdabro/Claude-Code-MCP-Server-Selector (8 stars, last pushed 29d ago), licensed MIT. It adds 30 tokens to every session and 1,067 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

write-release-notes

Generate engaging, high-energy release notes for a given version tag. Fetches the release from GitHub, retrieves every linked PR's title and description, then synthesizes all changes into a polished, user-facing release note with an enthusiastic tone. Use when the user asks to write, generate, or create release notes…

tailcallhq/forgecode · 105 tokens

release

Cut a new shellshare release: pick the right semver version, run make release, watch CI, and write the narrative GitHub release notes. Use this whenever the user wants to release, ship a new version, cut a release, tag a release, bump the version, or publish — even if they just say "release this" or "ship it". The…

vitorbaptista/shellshare · 120 tokens

release

Cut a versioned release of harness-mini — bump VERSION, roll the CHANGELOG, tag, and publish a GitHub release. Use when shipping a new version. Wraps bin/harness.sh release; covers the human-judgment steps (semver choice, changelog curation) the script can't make.

harness-mini/harness-mini · 66 tokens

npm-release

Guide for setting up automated npm package releases via GitHub Actions using Trusted Publishing (OIDC). Use when creating release workflows, publishing to npm, or troubleshooting CI/CD publish failures.

OzzyCzech/dotfiles · 39 tokens

gitlab-cli

Reference guide for GitLab CLI (glab) commands. Use when running glab commands for issues, merge requests, pipelines, releases, or CI/CD operations, or when the user asks about GitLab CLI syntax.

OzzyCzech/dotfiles · 48 tokens

agent-release-swarm

Agent skill for release-swarm - invoke with $agent-release-swarm.

ruvnet/ruflo · 19 tokens