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.
npx skills add supermaciz/sessions-chronicle --skill bump-versiongit clone --depth 1 https://github.com/supermaciz/sessions-chronicleWrote 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.
[](https://agentmods.dev/skills/supermaciz/sessions-chronicle/bump-version)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 like0.3.5.release_notes(optional): short paragraph + bullets for metainfo.
Validation:
- Reject if
new_versionis missing. - Reject if
new_versiondoes 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
- Validate
new_versionformat. - Update
Cargo.tomlversion. - Update
meson.buildproject version. - Verify
src/config.rs.instill uses@VERSION@placeholder. - Prepare release notes for metainfo:
- If
release_notesprovided: use it. - If missing: auto-generate a draft from recent commits/diff context, then ask user approval before writing.
- If
- Insert new
<release>block as first entry under<releases>. - Verify changes in all four target files.
- 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>
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.
- 9d ago First seen · 98 lines · 35 tokens per session scan A 661b3773814a
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.
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…
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.
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.
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.
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.
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…