bump-version

bump-version is a skill for Claude Code, Codex from supermaciz/sessions-chronicle. It costs 35 tokens per session (876 once invoked), scanned A, original, MIT.

A release helper for a Rust and Flatpak desktop app that keeps its version information and release notes aligned across project files. It also checks that the Flatpak package builds.

In plain words
What is it for?
Use it when publishing a new semantic version such as 0.3.5 of Sessions Chronicle. It updates the listed version files, adds reviewed release notes, and verifies the Flatpak build.
Why use it?
It prevents different files from showing different release versions and catches Flatpak build problems before release. It can also prepare release notes for review when they are missing.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions OpenCode.

Good fit Use it when publishing a new semantic version such as 0.3.5 of Sessions Chronicle. It updates the listed version files, adds reviewed release notes, and verifies the Flatpak build.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/supermaciz/sessions-chronicle/bump-version
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.

Any agent
npx skills add supermaciz/sessions-chronicle --skill bump-version
Clone the repo
git clone --depth 1 https://github.com/supermaciz/sessions-chronicle

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/supermaciz/sessions-chronicle/bump-version/github.svg)](https://agentmods.dev/skills/supermaciz/sessions-chronicle/bump-version)
Your own site
<a href="https://agentmods.dev/skills/supermaciz/sessions-chronicle/bump-version"><img src="https://agentmods.dev/badge/skills/supermaciz/sessions-chronicle/bump-version/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for bump-version

Your own site · 80×15
<a href="https://agentmods.dev/skills/supermaciz/sessions-chronicle/bump-version"><img src="https://agentmods.dev/badge/skills/supermaciz/sessions-chronicle/bump-version.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 876 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00035 $0.00876
Opus 5 $0.00017 $0.00438
Sonnet 5 $0.00007 $0.00175
Haiku 4.5 $0.00003 $0.00088

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

skills/bump-version/SKILL.md · 98 lines

How it starts

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

Bump Version (Sessions Chronicle)

Overview

Update release metadata consistently for this Meson + Flatpak project. Core principle: one new_version, one approved note, one successful Flatpak build.

When to Use

  • User asks to bump app version (0.x.y) for a release.
  • Version metadata must stay aligned across Cargo.toml, meson.build, src/config.rs.in, and metainfo releases.
  • Release notes are missing and need a generated draft before writing.

When NOT to Use

  • User only wants a local Rust build check (no release metadata changes).

Required Input

  • new_version (required): semantic version like 0.3.5.
  • release_notes (optional): short paragraph + bullets for metainfo.

Validation:

  • Reject if new_version is missing.
  • Reject if new_version does not match ^\d+\.\d+\.\d+$.

Quick Reference

File Expected change
Cargo.toml Set [package].version = "<new_version>"
meson.build Set project(..., version: '<new_version>', ...)
src/config.rs.in Keep pub const VERSION: &str = @VERSION@; (never edit src/config.rs)
data/dev.maciz.sessionschronicle.metainfo.xml.in.in Add newest <release version="<new_version>" date="YYYY-MM-DD">...</release>

Implementation Workflow

  1. Validate new_version format.
  2. Update Cargo.toml version.
  3. Update meson.build project version.
  4. Verify src/config.rs.in still uses @VERSION@ placeholder.
  5. Prepare release notes for metainfo:
    • If release_notes provided: use it.
    • If missing: auto-generate a draft from recent commits/diff context, then ask user approval before writing.
  6. Insert new <release> block as first entry under <releases>.
  7. Verify changes in all four target files.
  8. Run final verification command:
flatpak-builder --user flatpak_app build-aux/dev.maciz.sessionschronicle.Devel.json --force-clean

Example Release Entry

<release version="0.3.5" date="2026-03-05">
  <description>
    <p>Improves startup responsiveness and indexing reliability.</p>
    <ul>
      <li>Speed up startup with incremental indexing</li>
      <li>Re-index OpenCode sessions when files are updated</li>
    </ul>
  </description>
</release>

Read the full file on GitHub · 98 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. 9d ago First seen · 98 lines · 35 tokens per session scan A 661b3773814a

Subscribe to this mod's changes

bump-version is a skill published in the GitHub repository supermaciz/sessions-chronicle (5 stars, last pushed today), licensed MIT. It adds 35 tokens to every session and 876 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

ship

Ship workflow: detect + merge base branch, run tests, review diff, bump VERSION, update CHANGELOG, commit, push, create PR. Use when asked to "ship", "deploy", "push to main", "create a PR", "merge and push", or "get it deployed". Proactively invoke this skill (do NOT push/PR directly) when the user says code is…

GCWing/BitFun · 105 tokens

prepare-release

Prepare a new release by collecting commits, generating bilingual release notes, updating version files, and creating a release branch. Use when asked to prepare/create a release, bump version, or run /prepare-release.

CherryHQ/cherry-studio · 44 tokens

memstack-development-changelog-generator

Use when the user says 'generate changelog', 'update changelog', 'what changed', 'release notes', 'write changelog', or needs a formatted CHANGELOG.md from git commit history. Do NOT use for diary entries, git log viewing, or commit message writing.

cwinvestments/memstack · 63 tokens

git-workflow

A Git workflow guide for organizing commits, branches, pull requests, releases, and automated version-control tasks. Git is the system developers use to track code changes and collaborate.

huangwb8/skills · 47 tokens

git-publish-release

A release assistant for GitHub, a service for hosting software projects. It compares project history and creates a GitHub Release with notes for a chosen version tag.

huangwb8/skills · 42 tokens

automating-devops

DevOps knowledge reference covering Git workflows, testing strategies, DevSecOps, release pipeline orchestration (release.yml, multi-arch images, cosign integration), CI/CD pipelines, database management, observability, and performance optimization. Use when working with Git, CI/CD, release pipelines, ghcr image…

telagod/code-abyss · 76 tokens