afc:release-notes

afc:release-notes is a skill for Claude Code from jhlee0409/all-for-claudecode. It costs 13 tokens per session (2,244 once invoked), scanned A, original, MIT.

A release-note generator that turns Git commit and pull-request history into notes written for users. It can also publish those notes as a GitHub Release.

In plain words
What is it for?
Use it to create notes for a chosen version range, from a specific version to the latest code, or from the latest Git tag automatically. Add the posting option to publish the result on GitHub.
Why use it?
It removes the need to read and rewrite a long list of code changes by hand. It also keeps this task separate from updating a local changelog file.

Skill for Claude Code

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

Part of the afc plugin — 29 skills, 12 agents, 19 hooks shipped together

Good fit Use it to create notes for a chosen version range, from a specific version to the latest code, or from the latest Git tag automatically. Add the posting option to publish the result on GitHub.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jhlee0409/all-for-claudecode/release-notes
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add jhlee0409/all-for-claudecode --skill release-notes
Clone the repo
git clone --depth 1 https://github.com/jhlee0409/all-for-claudecode

Made for: Claude Code.

Or install afc, the plugin that ships this one along with the rest of its 29 skills, 12 agents, 19 hooks.

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 afc:release-notes

README.md
[![agentmods](https://agentmods.dev/badge/skills/jhlee0409/all-for-claudecode/release-notes.svg)](https://agentmods.dev/skills/jhlee0409/all-for-claudecode/release-notes)
Your own site
<a href="https://agentmods.dev/skills/jhlee0409/all-for-claudecode/release-notes"><img src="https://agentmods.dev/badge/skills/jhlee0409/all-for-claudecode/release-notes.svg" alt="Measured on agentmods" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,244 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.00013 $0.02244
Opus 5 $0.00006 $0.01122
Sonnet 5 $0.00003 $0.00449
Haiku 4.5 $0.00001 $0.00224

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

Security

Grade A, and why

afc:release-notes 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 7d 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.

skills/release-notes/SKILL.md · 225 lines

How it starts

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

/afc:release-notes — Generate Release Notes

Rewrites commit/PR history into user-facing release notes and optionally publishes to GitHub Releases. This is a standalone utility — not part of the auto pipeline. Does NOT modify local files (CHANGELOG updates are handled by /afc:launch).

Arguments

  • $ARGUMENTS — (optional) Version range and flags
    • v2.3.0..v2.4.0 — specific tag range
    • v2.4.0 — from that tag to HEAD
    • Not specified — auto-detect last tag to HEAD
    • --post — publish to GitHub Releases after preview (can combine with any range)

Parse the arguments:

  1. Extract --post flag if present
  2. Parse remaining as version range:
    • If contains ..: split into {from_tag}..{to_tag}
    • If single version: use {version}..HEAD
    • If empty: auto-detect with git describe --tags --abbrev=0

Git Context (auto-loaded)

!git describe --tags --abbrev=0 2>/dev/null || echo "[NO_TAGS]" !git log $(git describe --tags --abbrev=0 2>/dev/null || echo "")..HEAD --pretty=format:"%H %s" --no-merges 2>/dev/null || git log --pretty=format:"%H %s" --no-merges

Execution Steps

1. Determine Range

  • If a tag is found, set from_tag to that tag, to_tag to HEAD
  • If no tags exist, inform the user: "No tags found. Include all commits? (y/n)"
  • If a to_tag is specified (not HEAD), verify it exists: git rev-parse --verify {to_tag} 2>/dev/null
  • Determine the version label for the notes header:
    • If to_tag is a version tag: use it (e.g., v2.4.0)
    • If to_tag is HEAD: use "Unreleased" or the from_tag bumped (ask user)

2. Collect Raw Data

Run these commands to gather change context:

# Commit history (no merges)
git log {from_tag}..{to_tag} --pretty=format:"%H %s" --no-merges

# Merged PRs since the from_tag date
from_date=$(git log -1 --format=%aI {from_tag})
gh pr list --state merged --search "merged:>$from_date" --json number,title,author,labels,body --limit 100

If gh is not available or the repo has no remote, skip PR collection — proceed with git-only data.

Read the full file on GitHub · 225 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. 7d ago First seen · 225 lines · 13 tokens per session scan A 8fbc0119b7aa

Subscribe to this mod's changes

afc:release-notes is a skill published in the GitHub repository jhlee0409/all-for-claudecode (7 stars, last pushed 5mo ago), licensed MIT. It adds 13 tokens to every session and 2,244 once invoked, about $0.0001 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.

Related

Other skills, from other repositories