Umbraco.Automate: Skill for Claude Code

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

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

A tool for generating product changelogs from Conventional Commits, a commit-message format that labels changes by type and scope.

In plain words
What is it for?
Use it to list products, generate a changelog for a specific version, preview unreleased changes, or run the generator through its npm, PowerShell, or Bash wrappers.
Why use it?
It turns the Git history into release documentation and supports previews of changes that are not yet released.

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 →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/generate-changelog.sh --product=Umbraco.Automate --version=1.1.0.

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/changelog-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 changelog-management

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/umbraco/umbraco.automate/changelog-management"><img src="https://agentmods.dev/badge/skills/umbraco/umbraco.automate/changelog-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 715 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.00038 $0.00715
Opus 5 $0.00019 $0.00358
Sonnet 5 $0.00008 $0.00143
Haiku 4.5 $0.00004 $0.00072

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

Security

Grade A, and why

changelog-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/changelog-management/SKILL.md · 109 lines

How it starts

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

Changelog Manager

You are helping generate changelogs for Umbraco.Automate products from conventional commit history.

Task

Generate or update CHANGELOG.md files for products using the changelog generation scripts.

How Changelogs Work

  • Each product has a CHANGELOG.md at its root
  • Auto-generated from git history using Conventional Commits
  • Each product has a changelog.config.json defining its commit scopes
  • CI validates changelogs on vN/release/* and vN/hotfix/* branches

Available Commands

List Products

npm run changelog:list

Generate Changelog

# For a specific version
npm run changelog -- --product=Umbraco.Automate --version=1.1.0

# For unreleased changes
npm run changelog -- --product=Umbraco.Automate --unreleased

PowerShell Wrapper

.\scripts\generate-changelog.ps1 -Product Umbraco.Automate -Version 1.1.0

Bash Wrapper

./scripts/generate-changelog.sh --product=Umbraco.Automate --version=1.1.0

Workflow

  1. Ask user for input:

    • List available products or let user specify
    • Ask for version number (or use --unreleased flag)
    • Platform preference (npm, PowerShell, or Bash)
  2. Run the appropriate command

  3. Verify the changelog was updated:

    • Read the generated CHANGELOG.md
    • Show the new entry to the user
  4. Remind about next steps:

    • Review the generated changelog
    • Edit if needed (add breaking changes details, etc.)
    • Commit the changes

Available Products

Products are auto-discovered by scanning for changelog.config.json files:

  • Umbraco.Automate (core)

Important Notes

  • Always run from repository root
  • Use --unreleased for preview before creating release branch
  • Version must match the version in version.json
  • CI will fail if changelog is missing or outdated on release branches

Example Flow

User invokes: /changelog-management

You ask: "Which product?" (list available)
User selects: Umbraco.Automate

You ask: "What version?" (or suggest --unreleased)
User provides: 1.1.0

You detect: Windows platform
You run: .\scripts\generate-changelog.ps1 -Product Umbraco.Automate -Version 1.1.0

You verify: Read Umbraco.Automate/CHANGELOG.md and show the new entry

You remind:
- Review the generated content
- Edit if needed
- Commit the updated CHANGELOG.md

Read the full file on GitHub · 109 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 · 109 lines · 38 tokens per session scan A f27519f00c50

Subscribe to this mod's changes

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