release-notes

release-notes is a command for Claude Code from ihudak/ihudak-claude-plugins. It costs 63 tokens per session (8,341 once invoked), scanned A, original, MIT.

A release-notes drafting command that turns a resolved product requirements document, or a ticket, into customer-facing text. It can also use merged code changes, checks the writing style, and saves a persistent draft.

In plain words
What is it for?
Use it to draft notes for new features, breaking changes, and fixes, optionally assigning them to a release version.
Why use it?
It removes repetitive work when converting technical change information into publishable notes. It also keeps internal notes, identifiers, and pull-request links out of the draft.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; mentions subagents.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the docs-workflows plugin — 1 skill, 3 commands, 7 agents shipped together

Good fit Use it to draft notes for new features, breaking changes, and fixes, optionally assigning them to a release version.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ihudak/ihudak-claude-plugins
Claude Code
/plugin install docs-workflows

Made for: Claude Code.

Or install docs-workflows, the plugin that ships this one along with the rest of its 1 skill, 3 commands, 7 agents.

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-notes

README.md
[![agentmods](https://agentmods.dev/badge/commands/ihudak/ihudak-claude-plugins/release-notes/github.svg)](https://agentmods.dev/commands/ihudak/ihudak-claude-plugins/release-notes)
Your own site
<a href="https://agentmods.dev/commands/ihudak/ihudak-claude-plugins/release-notes"><img src="https://agentmods.dev/badge/commands/ihudak/ihudak-claude-plugins/release-notes/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-notes

Your own site · 80×15
<a href="https://agentmods.dev/commands/ihudak/ihudak-claude-plugins/release-notes"><img src="https://agentmods.dev/badge/commands/ihudak/ihudak-claude-plugins/release-notes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 8,341 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.00063 $0.08341
Opus 5 $0.00032 $0.04170
Sonnet 5 $0.00013 $0.01668
Haiku 4.5 $0.00006 $0.00834

Measured today against content hash 5921f950cc77, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

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 today.

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.

plugins/docs-workflows/commands/release-notes.md · 465 lines

How it starts

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

Draft release notes for the resolved PRD: $ARGUMENTS

Core references. A citation of the form workflows-core:<name> names a shared reference in the workflows-core plugin. Load it with Skill(skill: "workflows-core:reference", args: "<name>") — never by path: ${CLAUDE_PLUGIN_ROOT} resolves to this plugin, which does not carry it.

/release-notes produces a customer-facing release-notes draft for a resolved Product Requirements Document (or any ticket) from the resolved PRD folder. It optionally grounds the prose in merged PR diffs, renders the example-docs authored release-notes body — a plain Category: label + ### title + prose for the feature-updates / breaking-changes destinations, or one bare past-tense sentence for fixes — with no {{#internal-note}}, no identifiers, no PR links (the docs automation adds the metadata wrapper), runs a light style gate, and writes the draft to a persistent destination for the user to paste wherever their release notes are published.

Usage: /release-notes <ADDRESS> [--version <v>] [--no-docs] [--docs <path>]. --docs <path> — points documentation grounding at that root for this run instead of ${DOCS_PATH:-/workspace/docs}; strip the flag and its value together before any remaining-argument classification, or the path is read as part of the address. Declared for every consumer by workflows-core:docs-grounding §1's Flags first rung, which resolves it; this command only has to recognise it and pass the invocation through. Here <ADDRESS> is a key or an @<path> naming a folder in the specs tree.

  • --version <v> (optional) — the release this note belongs to. Absent, the grill asks once; declined, the draft omits it. Never invented.

For full feature documentation use /document; for Epic drafting use /epics.

This command makes zero external API calls and never writes into the docs repo.


Phase 0 — Load

  1. Flags. Strip every recognised flag from $ARGUMENTS before step 1 reads a positional token — --version <v> and --docs <path>, each together with the token after it, and --no-docs (boolean). Unstripped, a flag is a token like any other: --docs is read as the address, or its path is. --docs and --no-docs are carried to the resolve-docs-grounding call; --version is consumed where the version is needed.

  2. Resolve the address. Parse the single positional address from $ARGUMENTS — a <KEY>, or an @<path> naming a folder or a file inside one — and resolve it with resolve-address (Skill(skill: "workflows-core:reference", args: "addressing resolve-address"), §3). Carry the resolved path, kind and key forward; ambiguous → stop, naming every match. absent is a stop, not a folder to create — this command creates no folder in the specs tree. Surface the key dir not found rule in Skill(skill: "workflows-core:reference", args: "escalation-rules") (choices: ["Re-enter key", "Cancel"]) and name what does create one: a PRD- folder comes from /product-workflows:idea <KEY> or /product-workflows:create-prd <KEY> on the idea route and from /product-workflows:brd-split on its parent BRD on the BRD route; an EPIC- folder comes from /product-workflows:epics <PRD-ADDRESS> and from no other command.

    With no positional address, stop with RELEASE_NOTES_NEEDS_KEY: /release-notes needs a PRD or Epic address — a key, or an @<path> to its folder. — this command has no direct-prompt behavior.

Specs-repo preflight. Invoke Skill(skill: "workflows-core:reference", args: "specs-repo-git specs-preflight") and execute its specs-preflight entry point (§3) inline: flush any leftover session artifacts from an earlier run, retry an artifact commit that failed to push, and settle the branch. This runs against $SPECS_PATH only — git -C "$SPECS_PATH", never a cd, so the code/docs repo this run is working in is untouched (§1 rule 1). Prompt-free and silent when the specs repo is clean and on its default branch. If a guard fires, emit its §5 notice; if it returns specs_git: blocked (§3.3 G0), carry that flag for the whole run — the terminal commit-artifacts step skips on it.

Read the full file on GitHub · 465 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. today Changed · -24 lines 5921f950cc77
  2. 4d ago First seen · 489 lines · 63 tokens per session scan A 43a648055576

Subscribe to this mod's changes

release-notes is a command published in the GitHub repository ihudak/ihudak-claude-plugins (2 stars, last pushed yesterday), licensed MIT. It adds 63 tokens to every session and 8,341 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-09-05.