Morgana: Skill for Claude Code

.claude/skills/bump-version/SKILL.md

bump-version is a skill for Claude Code from mdesalvo/Morgana. It costs 60 tokens per session (733 once invoked), scanned A, original, Apache-2.0.

A version-update workflow for Morgana and projects that depend on it. It follows semantic versioning, a convention where major, minor, and patch numbers signal the kind of change made.

In plain words
What is it for?
Use it to increase the minor version for a new development cycle or the patch version for a hotfix, then update the listed project files.
Why use it?
It removes the need to find and edit each version file by hand when starting development work or preparing a production hotfix.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is mdesalvo/Morgana's own configuration. It tells Claude Code how to work on Morgana itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Morgana configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/mdesalvo/Morgana/main/.claude/skills/bump-version/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/mdesalvo/Morgana

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/mdesalvo/morgana/bump-version/github.svg)](https://agentmods.dev/skills/mdesalvo/morgana/bump-version)
Your own site
<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.

agentmods 80×15 button for bump-version

Your own site · 80×15
<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>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 733 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00060 $0.00733
Opus 5 $0.00030 $0.00367
Sonnet 5 $0.00012 $0.00147
Haiku 4.5 $0.00006 $0.00073

Measured 9d ago against content hash 7c12f7fdc6e6, 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.

.claude/skills/bump-version/SKILL.md · 80 lines

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

  1. Extract current version from <repo root>/Morgana/Directory.Build.props

    • Extract the value of <Version>X.Y.Z</Version>
  2. 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
  3. 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
  4. 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.Z with the newly calculated version
  5. Communicate the result to the user with details of the updated version

Read the full file on GitHub · 80 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 · 80 lines · 60 tokens per session scan A 7c12f7fdc6e6

Subscribe to this mod's changes

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.