bump

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

A release helper that updates a software project’s version, changelog, and README, then creates a Git tag and GitHub release.

In plain words
What is it for?
Use it when publishing a new semantic version, such as 0.4.0 or 1.0.0-beta.1, from a GitHub project.
Why use it?
It gathers real changes from Git history so release notes describe what changed. It also checks the version format, branch, and working-tree status before releasing.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: installed under .agents/ (shared by several agents).

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/geoloeg-ist/agents-reverse-engineer/bump
Any agent
npx skills add GeoloeG-IsT/agents-reverse-engineer --skill 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/skills/geoloeg-ist/agents-reverse-engineer/bump.svg)](https://agentmods.dev/skills/geoloeg-ist/agents-reverse-engineer/bump)
Your own site
<a href="https://agentmods.dev/skills/geoloeg-ist/agents-reverse-engineer/bump"><img src="https://agentmods.dev/badge/skills/geoloeg-ist/agents-reverse-engineer/bump.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,314 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.00022 $0.01314
Opus 5 $0.00011 $0.00657
Sonnet 5 $0.00004 $0.00263
Haiku 4.5 $0.00002 $0.00131

Measured 6d ago against content hash e160504a7511, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 6d 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.

.agents/skills/bump/SKILL.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 — uncommitted changes will be included in 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, WARN the user but proceed anyway — these changes will be staged and included in the release commit.
  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. 6d ago First seen · 173 lines · 22 tokens per session scan A e160504a7511

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

cloudron-app-publishing

Distribute Cloudron apps via CloudronVersions.json version catalogs.

marcusquinn/aidevops · 18 tokens

release

Corta una nueva versión — mueve la sección Unreleased del CHANGELOG a una versión SemVer con fecha, crea el commit y el tag, y opcionalmente el release de GitHub. Úsalo cuando la persona pida publicar/cortar una versión o preparar un release (p. ej. "corta la versión 1.2.0", "prepara el release", "publica una nueva…

brayandiazc/project-starter-template-es-ai · 95 tokens

agent-framework-py-release

Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…

microsoft/agent-framework · 103 tokens

release

Cut a FastMCP release end to end. Use when the maintainer says "cut a release", "prep a patch", "ship 4.x.y", or asks what a release would contain. Covers the notes preview, the title pun, the docs changelog PR that must land before the tag, the tag itself, the publish fan-out, and verifying gofastmcp.com actually…

PrefectHQ/fastmcp · 83 tokens

changelog

Generate or update the CHANGELOG.md for a new release version. Use when the user says "generate changelog", "update changelog", "write release notes", or asks to prepare a changelog for a version like "changelog for 0.5.3".

entireio/cli · 58 tokens

changelog-generation

WORKFLOW SKILL — Generates release changelog entries and bumps versions for azd core or azd extensions. Identifies merged PRs since the last release, fetches PR details via GitHub MCP, classifies changes, and writes user-facing changelog entries with proper formatting, attribution, and spell checking. INVOKES: GitHub…

Azure/azure-dev · 167 tokens