bump

bump is a command for Claude Code from GeoloeG-IsT/agents-reverse-engineer. It costs 22 tokens per session (1,339 once invoked), scanned A, original, MIT.

A release command that changes a project version, updates its changelog and readme, creates a Git tag, and publishes a release on GitHub.

In plain words
What is it for?
Use it with a semantic version such as 0.4.0 to prepare the release commit and publish the matching GitHub release.
Why use it?
It coordinates the repeated release steps and checks the version, branch, authentication, and recent changes first.

Command for Claude Code

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 commands/geoloeg-ist/agents-reverse-engineer/bump
Clone the repo
git clone --depth 1 https://github.com/GeoloeG-IsT/agents-reverse-engineer

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/geoloeg-ist/agents-reverse-engineer/bump.svg)](https://agentmods.dev/commands/geoloeg-ist/agents-reverse-engineer/bump)
Your own site
<a href="https://agentmods.dev/commands/geoloeg-ist/agents-reverse-engineer/bump"><img src="https://agentmods.dev/badge/commands/geoloeg-ist/agents-reverse-engineer/bump.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,339 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.00022 $0.01339
Opus 5 $0.00011 $0.00669
Sonnet 5 $0.00004 $0.00268
Haiku 4.5 $0.00002 $0.00134

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

Security

Grade A, and why

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 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.

.claude/commands/bump.md · 173 lines

How it starts

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

Bump the project version, update documentation, create a git tag, and publish a GitHub release.

  • Version argument is REQUIRED (e.g., /bump 0.4.0)
  • Should be on main branch (warn if not, but proceed)
  • gh CLI must be authenticated
  • Dirty working tree is allowed — but only package.json and CHANGELOG.md are staged for the release commit

Phase 1: Validate

  1. Check version argument:

    • If no version provided, STOP and ask: "Please provide a version (e.g., /bump 0.4.0)"
    • Version must be valid semver (e.g., 0.4.0, 1.0.0-beta.1)
  2. Check git status:

    git status --porcelain
    
    • If there are uncommitted changes, note them but proceed — only package.json and CHANGELOG.md will be staged for the release commit. Other changes are left untouched.
  3. Check current branch:

    git branch --show-current
    
    • Warn if not on main branch (but allow to proceed)
  4. Get current version:

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

Phase 2: Extract Changelog from Git Commits

CRITICAL: Do NOT use placeholder text like "Version bump". Extract real changes from git commits.

  1. Get commits since last version tag:

    git log v<previous_version>..HEAD --oneline --no-merges
    
  2. For each meaningful commit, examine changes:

    git show --stat <commit_hash>
    git diff v<previous_version>..HEAD -- <key_files>
    
  3. Categorize changes into Keep a Changelog format:

    • Added: New features, capabilities, or files
    • Changed: Modifications to existing behavior, enhancements, updated defaults
    • Fixed: Bug fixes, error corrections
    • Removed: Removed features or code
    • Deprecated: Features marked for future removal
    • Security: Security-related changes
  4. Write specific, detailed changelog entries:

    • Describe WHAT changed and WHY (from user perspective)
    • Include concrete details (e.g., "timeout increased from 120s to 300s")
    • Reference specific configuration changes, default values, etc.
    • ONLY use "Version bump" if literally nothing changed (empty git diff)

Read the full file on GitHub · 173 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 · 173 lines · 22 tokens per session scan A 005f001cd9d2

Subscribe to this mod's changes

bump is a command published in the GitHub repository GeoloeG-IsT/agents-reverse-engineer (20 stars, last pushed 27d ago), licensed MIT. It adds 22 tokens to every session and 1,339 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-30.