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 agentmods add skills/geoloeg-ist/agents-reverse-engineer/bumpnpx skills add GeoloeG-IsT/agents-reverse-engineer --skill bumpgit clone --depth 1 https://github.com/GeoloeG-IsT/agents-reverse-engineerWrote 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/geoloeg-ist/agents-reverse-engineer/bump)<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>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.00022 | $0.01314 |
| Opus 5 | $0.00011 | $0.00657 |
| Sonnet 5 | $0.00004 | $0.00263 |
| Haiku 4.5 | $0.00002 | $0.00131 |
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.
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
mainbranch (warn if not, but proceed) ghCLI must be authenticated- Dirty working tree is allowed — uncommitted changes will be included in the release commit
Phase 1: Validate
-
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)
- If no version provided, STOP and ask: "Please provide a version (e.g.,
-
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.
-
Check current branch:
git branch --show-current- Warn if not on
mainbranch (but allow to proceed)
- Warn if not on
-
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.
-
Get commits since last version tag:
git log v<previous_version>..HEAD --oneline --no-merges -
For each meaningful commit, examine changes:
git show --stat <commit_hash> git diff v<previous_version>..HEAD -- <key_files> -
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
-
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)
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.
- 6d ago First seen · 173 lines · 22 tokens per session scan A e160504a7511
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.
Other skills, from other repositories
cloudron-app-publishing
Distribute Cloudron apps via CloudronVersions.json version catalogs.
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…
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…
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…
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".
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…