Umbraco.Automate: Skill for Claude Code

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

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

A tool for creating and updating release-manifest.json in the Umbraco.Automate repository. This file lists which products should be packaged and released.

In plain words
What is it for?
Preparing product releases and hotfixes, selecting products for packaging, checking available product directories, and generating the repository’s release manifest.
Why use it?
It prevents release branches from missing the product list required by the release process. It can validate specified products or help choose them interactively.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: 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-manifest-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-manifest-management

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/umbraco/umbraco.automate/release-manifest-management"><img src="https://agentmods.dev/badge/skills/umbraco/umbraco.automate/release-manifest-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,232 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.
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.00055 $0.01232
Opus 5 $0.00028 $0.00616
Sonnet 5 $0.00011 $0.00246
Haiku 4.5 $0.00006 $0.00123

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

Security

Grade A, and why

release-manifest-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 11d 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-manifest-management/SKILL.md · 147 lines

How it starts

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

Release Manifest Manager

You are helping manage the release-manifest.json file for the Umbraco.Automate repository.

Task

Generate release-manifest.json at the repository root. Products can be provided as a parameter or selected interactively via a numbered menu.

Usage:

  • With products: /release-manifest-management --products="Umbraco.Automate,Umbraco.Automate.OpenIddict,Umbraco.Automate.Slack"
  • Interactive: /release-manifest-management (shows menu)

About Release Manifests

  • Required on vN/release/* branches (CI will fail without it)
  • Optional on vN/hotfix/* branches (falls back to change detection if absent)
  • Lists which products to package and release
  • Format: JSON array of product names (e.g., ["Umbraco.Automate", "Umbraco.Automate.OpenIddict"])

Workflow

Mode Detection

Check the initial prompt/task for a --products parameter:

  • If --products="Product1,Product2,..." is present → Use Automated Mode
  • If no products specified → Use Interactive Mode

Automated Mode (products provided)

  1. Parse product list from parameter (comma-separated)
  2. Discover available products to validate:
    find . -maxdepth 1 -type d -name "Umbraco.Automate*" | sed 's|^\./||' | sort
    
  3. Validate each product exists in the repository
  4. Skip to Generate Manifest (step 5 below)

Interactive Mode (no products provided)

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

    find . -maxdepth 1 -type d -name "Umbraco.Automate*" | sed 's|^\./||' | sort
    
  2. Display numbered menu - Show all products with numbers:

    Select products to include in this release:
    
    1. Umbraco.Automate
    2. Umbraco.Automate.OpenIddict
    3. Umbraco.Automate.Slack
    
  3. Get user selection - Display the menu and wait for user response:

    • After showing the numbered list, ask the user to provide their selection
    • Do NOT use AskUserQuestion - just wait for the user to respond naturally
    • The user will type their selection in the chat
    • Parse their input, supporting multiple formats:
      • Comma-separated: 1,2,3
      • Space-separated: 1 2 3
      • Range notation: 1-3
      • Special commands: all, none, cancel
      • Product names: Umbraco.Automate, Umbraco.Automate.OpenIddict

Read the full file on GitHub · 147 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. 11d ago First seen · 147 lines · 55 tokens per session scan A a0689eaf180f

Subscribe to this mod's changes

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