bump-version

bump-version is a skill for Claude Code, Codex from psd401/psd-claude-plugins. It costs 29 tokens per session (1,923 once invoked), scanned A, original, MIT.

A release-versioning command for a plugin marketplace with three separate version tracks: the marketplace, psd-coding-system, and psd-productivity.

In plain words
What is it for?
Use it to apply patch, minor, or major version changes and update the related metadata and README files when the corresponding project has changed.
Why use it?
It reduces the risk of changing the wrong version or forgetting one of the files that must be updated for a release.

Skill for Claude CodeCodex

Part of the psd-coding-system plugin — 9 skills, 5 hooks shipped together

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/psd401/psd-claude-plugins/bump-version
Any agent
npx skills add psd401/psd-claude-plugins --skill bump-version
Clone the repo
git clone --depth 1 https://github.com/psd401/psd-claude-plugins

Made for: Claude Code, Codex.

Or install psd-coding-system, the plugin that ships this one along with the rest of its 9 skills, 5 hooks.

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 bump-version

README.md
[![agentmods](https://agentmods.dev/badge/skills/psd401/psd-claude-plugins/bump-version.svg)](https://agentmods.dev/skills/psd401/psd-claude-plugins/bump-version)
Your own site
<a href="https://agentmods.dev/skills/psd401/psd-claude-plugins/bump-version"><img src="https://agentmods.dev/badge/skills/psd401/psd-claude-plugins/bump-version.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,923 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 $0.00029 $0.01923
Opus 5 $0.00015 $0.00962
Sonnet 5 $0.00006 $0.00385
Haiku 4.5 $0.00003 $0.00192

Measured 4d ago against content hash 80c4035bca2b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

bump-version 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 4d 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.

plugins/psd-coding-system/skills/bump-version/SKILL.md · 201 lines

How it starts

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

Bump Version Command

You automate the version bump ritual for the PSD Plugin Marketplace. There are three independent version tracks — never conflate them.

Bump type: $ARGUMENTS

Version Track Reference

Track Files When to bump
Marketplace .claude-plugin/marketplace.jsonmetadata.version; CLAUDE.md**Version**; root README.md Every release
psd-coding-system plugins/psd-coding-system/.claude-plugin/plugin.json; marketplace.jsonplugins[name=psd-coding-system].version; plugins/psd-coding-system/README.md Only when coding system skills/agents changed
psd-productivity plugins/psd-productivity/.claude-plugin/plugin.json; marketplace.jsonplugins[name=psd-productivity].version; plugins/psd-productivity/README.md Only when productivity skills/agents changed

Phase 1: Determine Bump Type

BUMP_TYPE="$ARGUMENTS"

case "$BUMP_TYPE" in
  patch|minor|major) echo "Bump type: $BUMP_TYPE" ;;
  *)
    echo "Invalid or missing bump type"
    ;;
esac

If the argument is empty or invalid, use AskUserQuestion to ask which bump type they want.

Phase 2: Determine Which Plugins Changed

Use AskUserQuestion to ask:

  • Did psd-coding-system skills or agents change in this release?
  • Did psd-productivity skills or agents change in this release?

The marketplace version always bumps. Plugin versions only bump for their own changes.

Phase 3: Read Current Versions

# Marketplace version (always bumps)
MARKETPLACE_VERSION=$(jq -r '.metadata.version' .claude-plugin/marketplace.json)
echo "Marketplace current: $MARKETPLACE_VERSION"

# Plugin versions (only if those plugins changed)
CODING_VERSION=$(jq -r '.version' plugins/psd-coding-system/.claude-plugin/plugin.json)
PRODUCTIVITY_VERSION=$(jq -r '.version' plugins/psd-productivity/.claude-plugin/plugin.json)
echo "psd-coding-system current: $CODING_VERSION"
echo "psd-productivity current: $PRODUCTIVITY_VERSION"

Read the full file on GitHub · 201 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. 4d ago First seen · 201 lines · 29 tokens per session scan A 80c4035bca2b

Subscribe to this mod's changes

bump-version is a skill published in the GitHub repository psd401/psd-claude-plugins (2 stars, last pushed 3d ago), licensed MIT. It adds 29 tokens to every session and 1,923 once invoked, about $0.0001 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.