Umbraco.Automate: Skill for Claude Code

.claude/skills/release-management/SKILL.md

release-management is a skill for Claude Code from umbraco/Umbraco.Automate. It costs 46 tokens per session (9,197 once invoked), scanned A, original, MIT.

A release-preparation workflow for a software repository containing several related products.

In plain words
What is it for?
It helps detect changed products, recommend version bumps, update dependency ranges and version files, create release branches, and generate and review manifests and changelogs.
Why use it?
It reduces the manual work and versioning mistakes involved in deciding what changed, updating dependent products, and preparing release files.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; names the AskUserQuestion tool.

This is umbraco/Umbraco.Automate's own configuration. It tells Claude Code how to work on Umbraco.Automate 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 Umbraco.Automate configures →

Reuse

Borrowing it

Nothing to install: this file belongs to umbraco/Umbraco.Automate. 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/umbraco/Umbraco.Automate/v18/dev/.claude/skills/release-management/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/umbraco/Umbraco.Automate

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 release-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/umbraco/umbraco.automate/release-management/github.svg)](https://agentmods.dev/skills/umbraco/umbraco.automate/release-management)
Your own site
<a href="https://agentmods.dev/skills/umbraco/umbraco.automate/release-management"><img src="https://agentmods.dev/badge/skills/umbraco/umbraco.automate/release-management/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 release-management

Your own site · 80×15
<a href="https://agentmods.dev/skills/umbraco/umbraco.automate/release-management"><img src="https://agentmods.dev/badge/skills/umbraco/umbraco.automate/release-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 9,197 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.00046 $0.09197
Opus 5 $0.00023 $0.04598
Sonnet 5 $0.00009 $0.01839
Haiku 4.5 $0.00005 $0.00920

Measured 10d ago against content hash 88869d0200ef, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

release-management 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 10d 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/release-management/SKILL.md · 801 lines

How it starts

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

Release Manager

You are the orchestrator for preparing releases in the Umbraco.Automate repository.

Task

Guide users through the complete release preparation process:

  1. Detect changed products since their last release tags
  2. Analyze commits to recommend version bumps (major/minor/patch)
  3. Cascade forced bumps to every dependent of a product undergoing minor/major/downplayed-breaking changes
  4. Confirm versions with the user (including cascaded products)
  5. Update Directory.Packages.props inter-product dependency ranges (with user approval)
  6. Create release branch (e.g., v18/release/2026.02.1) and switch to it
  7. Dependency validation - Check for cross-product conflicts using the graph built in cascade analysis
  8. Update version.json files for each product
  9. Generate release-manifest.json via /release-manifest-management
  10. Generate CHANGELOG.md files via /changelog-management
  11. Changelog review - Review generated changelogs for quality and completeness
  12. Validate all files are consistent
  13. Commit all changes to the release branch

Workflow

Phase 1: Change Detection

  1. Find all products - Discover Umbraco.Automate* directories at repo root

  2. For each product, detect changes since last release:

    # Find the most recent release tag for this product that is REACHABLE from HEAD.
    # Use git describe (reachability-based), NOT `git tag --list --sort=-version:refname`
    # (version-sorted). On parallel support lines (e.g. support/17.x alongside an 18.x
    # line on dev/main), a version sort would pick the highest tag across ALL branches —
    # so a 17.x release run would wrongly grab an 18.x tag as its base. git describe walks
    # back from HEAD and only sees tags on this line's history. This matches CI's
    # detect-changes.ps1 (`git describe --tags --abbrev=0 --match=...`), so the skill and
    # CI agree on each product's base tag.
    git describe --tags --abbrev=0 --match="<Product>@*"   # e.g. --match="Umbraco.Automate@*"
    # Exit code != 0 means no matching tag is reachable (first release on this line) —
    # fall back to merge-base with this line's vN/main (see Error Handling).
    
    # Get commits affecting this product since that tag
    git log <tag>..HEAD --oneline -- <ProductFolder>/
    
    # Exclude non-substantive changes (CHANGELOG.md, version.json)
    git diff <tag>..HEAD --name-only -- <ProductFolder>/ | grep -v 'CHANGELOG.md\|version.json'
    

Read the full file on GitHub · 801 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. 10d ago First seen · 801 lines · 46 tokens per session scan A 88869d0200ef

Subscribe to this mod's changes

release-management is a skill published in the GitHub repository umbraco/Umbraco.Automate (5 stars, last pushed yesterday), licensed MIT. It adds 46 tokens to every session and 9,197 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.