release-notes

release-notes is a skill for Claude Code from epam/ai-dial-ui-kit. It costs 110 tokens per session (3,268 once invoked), scanned A, original, Apache-2.0.

A workflow for editing release notes for a tagged version of the UI kit. Release notes are a readable summary of what changed in a software release, based here on automatically generated GitHub notes.

In plain words
What is it for?
Use it when polishing the release notes for a specific tag or the latest stable release; it saves a draft in the repository.
Why use it?
It removes noisy commit labels, internal details, and irrelevant test entries so the draft focuses on changes users can understand.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Good fit Use it when polishing the release notes for a specific tag or the latest stable release; it saves a draft in the repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/epam/ai-dial-ui-kit/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 epam/ai-dial-ui-kit --skill release-notes
Clone the repo
git clone --depth 1 https://github.com/epam/ai-dial-ui-kit

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/epam/ai-dial-ui-kit/release-notes/github.svg)](https://agentmods.dev/skills/epam/ai-dial-ui-kit/release-notes)
Your own site
<a href="https://agentmods.dev/skills/epam/ai-dial-ui-kit/release-notes"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-ui-kit/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/skills/epam/ai-dial-ui-kit/release-notes"><img src="https://agentmods.dev/badge/skills/epam/ai-dial-ui-kit/release-notes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,268 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.00110 $0.03268
Opus 5.5 $0.00044 $0.01307
Sonnet 5 $0.00022 $0.00654
Haiku 4.5 $0.00011 $0.00327

Measured 6d ago against content hash 658de513a950, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-25, 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 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/release-notes/SKILL.md · 232 lines

How it starts

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

@epam/ai-dial-ui-kit — release-notes enhancer

The CI publishes a release for every tag with bullets that are the raw PR titles. Those bullets carry noise — conventional-commit prefixes (feat(scope):, fix(area):), cross-project issue refs from consumer repos (ai-dial-chat, ai-dial-admin-frontend), repeated scope prefixes, tooling/internal items under ## Other, and a ## Tests section that has zero consumer impact. The stable releases at https://github.com/epam/ai-dial-ui-kit/releases are what those raw notes look like after a human editorial pass. This skill reproduces that pass.

You are running in a forked, isolated context. Read and research freely — only the final summary you return reaches the main conversation. All file writes happen in this fork; the draft lands at .claude/release-notes/<tag>-draft.md.

When to use

  • "Enhance the release notes for 0.11.0"
  • "Look at the latest release notes and refine them"
  • "The CI just published <tag>, make it readable"
  • "Polish the release notes for the current tag"

Do not trigger on requests like "what changed in 0.10.0?" — that is a recall question, not a notes-editing task.

Inputs

tag = $tag — the GitHub release tag to enhance (e.g. 0.11.0, 0.10.0). If empty, pick the most recent tag from gh release list --limit 5 and confirm with the user before editing.

Workflow

1. Resolve target and reference styles

  1. gh release view <tag> --json body,name,tagName — capture the raw CI notes.
  2. gh release list --limit 10 — locate the previous stable tag.
  3. gh release view <prev-tag> --json body — style anchor. Match their terseness; one line per bullet.
  4. git log <prev-tag>..<tag> --oneline — full commit list for the range, to spot commits the CI dropped.

2. Pull source context for each bullet

For every bullet in the raw notes:

  1. Parse out the trailing (Issue #<issue>) (#<PR>) or just (#<PR>). Canonical reference order is #<issue> (#<PR>).
  2. gh pr view <PR> --json title,body,labels — read the PR body for the why and what-it-replaces; the title is too compressed.
  3. For bullets without a PR number, find the commit with git log <prev-tag>..<tag> --oneline | grep -i <keywords> and git show <hash> — fold into a related entry rather than leaving standalone.

Read the full file on GitHub · 232 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 · 232 lines · 110 tokens per session scan A 658de513a950

Subscribe to this mod's changes

release-notes is a skill published in the GitHub repository epam/ai-dial-ui-kit (10 stars, last pushed today), licensed Apache-2.0. It adds 110 tokens to every session and 3,268 once invoked, about $0.0004 per session on Opus 5.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-19.