cli: Skill for Claude Code

.claude/skills/generate-release-changelog/SKILL.md

generate-release-changelog is a skill for Claude Code from archcore-ai/cli. It costs 58 tokens per session (1,330 once invoked), scanned A, original, Apache-2.0.

A release-note writer that turns the commits since the latest Git tag into a short changelog for users. A Git tag is a named marker for a particular version of the code.

In plain words
What is it for?
Use it to draft notes for the latest software release, grouping changes by their impact and adding product and technical context.
Why use it?
It removes the need to sort through technical commit messages and explain what changed from a user's point of view.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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

Reuse

Borrowing it

Nothing to install: this file belongs to archcore-ai/cli. 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/archcore-ai/cli/main/.claude/skills/generate-release-changelog/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/archcore-ai/cli

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 generate-release-changelog

README.md
[![agentmods](https://agentmods.dev/badge/skills/archcore-ai/cli/generate-release-changelog.svg)](https://agentmods.dev/skills/archcore-ai/cli/generate-release-changelog)
Your own site
<a href="https://agentmods.dev/skills/archcore-ai/cli/generate-release-changelog"><img src="https://agentmods.dev/badge/skills/archcore-ai/cli/generate-release-changelog.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,330 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00058 $0.01330
Opus 5 $0.00029 $0.00665
Sonnet 5 $0.00012 $0.00266
Haiku 4.5 $0.00006 $0.00133

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

Security

Grade A, and why

generate-release-changelog 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 6d 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/generate-release-changelog/SKILL.md · 121 lines

How it starts

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

Generate Release Changelog

Produce a tight, human-readable changelog for the latest published Git tag and print it as the final assistant message. This skill is read-only — do not write, edit, or create any files, directories, or git/GitHub objects at any point.

The product owner reads this to understand what changed for users, not what was implemented. Optimize for impact density: every bullet must answer "what is different now from a user's seat?". Cut anything that does not.

Hard constraints (non-negotiable)

  • No file writes: do not use Write, Edit, Bash mkdir/touch, or any equivalent.
  • No remote writes: do not run git commit, git tag, git push, or gh release create/edit.
  • Output is a single chat message in Markdown. No preamble ("Here's your changelog:"), no follow-up questions, no commentary after the changelog ends.
  • If the commit range is empty, print a single line: No commits found between <previous> and <latest>. and stop.

Step 1 — Resolve the tag range

Run in parallel:

git tag --sort=-creatordate | head -5
git describe --tags --abbrev=0
  • latest = output of git describe --tags --abbrev=0.
  • previous = the next tag in the sorted list. If no previous tag exists, use git rev-list --max-parents=0 HEAD | head -1 and note "initial release" in the changelog.
  • If the user provides a tag argument, treat that as latest; derive previous from the sorted list.

Step 2 — Collect commits

git log <previous>..<latest> --no-merges --pretty=format:'%H%x09%s%x09%an'

For each commit, capture changed files:

git show --stat --pretty=format:'' <sha> | head -40

For commits with ambiguous subjects (e.g., chore: misc, wip, update), inspect the diff only for paths that look load-bearing — skip obvious docs: / chore: commits:

git show <sha> -- <relevant-paths>

Step 3 — Classify commits

Map every commit to exactly one bucket. Conventional Commit prefixes are a hint; the diff is authoritative — a chore: commit that ships user-visible behavior belongs in Features.

Read the full file on GitHub · 121 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. 6d ago First seen · 121 lines · 58 tokens per session scan A 73658f8e6c89

Subscribe to this mod's changes

generate-release-changelog is a skill published in the GitHub repository archcore-ai/cli (64 stars, last pushed yesterday), licensed Apache-2.0. It adds 58 tokens to every session and 1,330 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-30.