Borrowing it
Nothing to install: this file belongs to mdesalvo/Morgana. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/mdesalvo/Morgana/main/.claude/skills/bump-version/SKILL.mdgit clone --depth 1 https://github.com/mdesalvo/MorganaWrote 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/mdesalvo/morgana/bump-version)<a href="https://agentmods.dev/skills/mdesalvo/morgana/bump-version"><img src="https://agentmods.dev/badge/skills/mdesalvo/morgana/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/mdesalvo/morgana/bump-version"><img src="https://agentmods.dev/badge/skills/mdesalvo/morgana/bump-version.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00060 | $0.00733 |
| Opus 5 | $0.00030 | $0.00367 |
| Sonnet 5 | $0.00012 | $0.00147 |
| Haiku 4.5 | $0.00006 | $0.00073 |
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 — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.
bump_version
Automates version increment for Morgana and all dependent projects when starting a new development cycle.
Trigger
Activated when the user says things like:
- "we just released"
- "bump the version"
- "start a new version"
- "increment version"
- Any request indicating the start of a new development cycle
Hotfix Trigger
For production hotfixes, activated when the user says:
- "prepare a hotfix"
- "we need to ship a production fix"
- "hotfix release"
- Any request indicating a patch fix needs to be distributed
Procedure
-
Extract current version from
<repo root>/Morgana/Directory.Build.props- Extract the value of
<Version>X.Y.Z</Version>
- Extract the value of
-
Increment the version using Semantic Versioning
- Default behavior (new development cycle): Increment the minor version (Y)
- X.Y.Z → X.(Y+1).0
- Example: 0.25.0 → 0.26.0
- Hotfix behavior: Increment the patch version (Z)
- X.Y.Z → X.Y.(Z+1)
- Example: 0.25.0 → 0.25.1
- Default behavior (new development cycle): Increment the minor version (Y)
-
Update all version files in the following paths:
<repo root>/Morgana/Directory.Build.props<repo root>/Channels/Cauldron/Directory.Build.props<repo root>/Channels/Rune/Directory.Build.props<repo root>/Channels/Grimoire/Directory.Build.props<repo root>/Examples/Examples.csproj<repo root>/PromptHarness/PromptHarness.csproj<repo root>/Alembic/Directory.Build.props<repo root>/Alembic/PromptHarness/PromptHarness.csproj
-
Add new section in CHANGELOG.md
- Read
<repo root>/CHANGELOG.md - Insert a new section right after the header and preamble
- For normal version bumps (Y increment):
## [X.Y.Z] - UNDER DEVELOPMENT ### ✨ Added ### 🔄 Changed ### 🐛 Fixed ### 🚀 Future Enablement- For hotfixes (Z increment):
## [X.Y.Z] - UNDER DEVELOPMENT ### 🐛 Fixed- Replace
X.Y.Zwith the newly calculated version
- Read
-
Communicate the result to the user with details of the updated version
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 · 80 lines · 60 tokens per session scan A 7c12f7fdc6e6
bump-version is a skill published in the GitHub repository mdesalvo/Morgana (10 stars, last pushed today), licensed Apache-2.0. It adds 60 tokens to every session and 733 once invoked, about $0.0003 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
add-github
Add GitHub channel integration via Chat SDK. PR and issue comment threads as conversations.
update-nanoclaw
Transactionally update a customized NanoClaw checkout from official upstream without exposing live mounted source, with fork-safe skill refresh, mutable-state snapshots, migration gates, exact-code upgrade markers, detected service restart, health verification, and automatic local rollback. Use for routine merge…
git-commit
Generate well-formatted git commit messages following conventional commit standards.
github-auth
Set up GitHub authentication for the agent using git (universally available) or the gh CLI. Covers HTTPS tokens, SSH keys, credential helpers, and gh auth — with a detection flow to pick the right method automatically.
github
Use gh as the primary interface for GitHub data and actions. Keep this skill focused on basic operations and command safety, not maintainer triage strategy.
security-pipeline
Use when security verification is needed - pre-commit security checks, vulnerability scanning, STRIDE threat analysis. Integrates with /handoff-verify --security and /commit-push-pr. CWE Top 25 based.