changelog

changelog is a skill for Claude Code from cenconq25/claude-code-app-studio. It costs 43 tokens per session (1,761 once invoked), scanned A, original, MIT.

A release-note writer that turns Git history and project records into two versions of a changelog: one for engineers and one for users.

In plain words
What is it for?
It helps prepare release notes from commits, sprints, product documents, bug records, and architecture decisions.
Why use it?
It removes the manual work of collecting completed changes and explaining them clearly for different audiences.

Skill for Claude Code

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

Good fit It helps prepare release notes from commits, sprints, product documents, bug records, and architecture decisions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cenconq25/claude-code-app-studio/changelog
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 cenconq25/claude-code-app-studio --skill changelog
Clone the repo
git clone --depth 1 https://github.com/cenconq25/claude-code-app-studio

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/cenconq25/claude-code-app-studio/changelog.svg)](https://agentmods.dev/skills/cenconq25/claude-code-app-studio/changelog)
Your own site
<a href="https://agentmods.dev/skills/cenconq25/claude-code-app-studio/changelog"><img src="https://agentmods.dev/badge/skills/cenconq25/claude-code-app-studio/changelog.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,761 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.00043 $0.01761
Opus 5 $0.00022 $0.00881
Sonnet 5 $0.00009 $0.00352
Haiku 4.5 $0.00004 $0.00176

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

Security

Grade A, and why

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 4d 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/SKILL.md · 252 lines

How it starts

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

Changelog

Translate a git history window plus the corresponding sprint and PRD context into a clean changelog. The internal version explains what shipped and why; the user-facing version is short, plain, and respectful of store character limits.


Phase 1: Resolve the Window

Parse arguments:

  • --from=<tag-or-date> and --to=<tag-or-date> define the explicit window.
  • --version=<v> looks up the previous release tag and uses it as the --from.
  • Default: --from = previous release tag, --to = HEAD.

Use Bash:

git tag --sort=-creatordate | head -n 5
git log --pretty=format:'%h%x09%s%x09%an' [from]..[to]

Capture commits, authors, and SHAs.


Phase 2: Pull Auxiliary Context

Read in parallel:

  • Sprint files closed within the window: production/sprints/sprint-*.md.
  • Story files closed within the window: production/epics/**/story-*.md filtered by Status: Complete and Closed: [in-window].
  • Bug records closed within the window: production/qa/bugs/BUG-*.md filtered by Status: Closed and a closing date in window.
  • PRD updates in the window via git log -- design/prd/.
  • ADRs accepted in the window via git log -- docs/architecture/.

Phase 3: Categorize Commits

Run each commit through a classifier:

  • Features — commit message includes "feat" / "feature" / refers to a story closing as new functionality.
  • Improvements — "perf", "improve", "polish", "tune".
  • Fixes — "fix", "bug", references a BUG ID.
  • Security — "security", "CVE", references a security audit finding.
  • Internal — "refactor", "chore", "test", "ci", "docs", "style".
  • RevertedRevert "..." style messages.

For each commit, attempt to enrich:

  • Linked story (commit body or branch name often contains STORY-NN).
  • Linked bug (BUG-NN).
  • Linked PRD section.

Phase 4: Internal Changelog

Render at one entry per change. Structure:

# Internal Changelog — [version]

Window: [from] -> [to]
Author count: [N]
Commit count: [N]

## Features
- [STORY-NN] [headline] — [PRD ref] (commits: abc123, def456)
  Notes: [summary, framework notes, ADR ref]

## Improvements
- [headline] — [perf-profile reference if perf-related]

## Fixes
- [BUG-NN] [headline] (commits: ...)

## Security
- [security-audit ref] [summary]

## Internal / Refactors
- [headline]

## Reverted
- [reverted commit + reason if known]

## Notes for Engineers
- API changes: [list]
- Migration steps: [list]
- Deprecations introduced: [list]
- New ADRs: [IDs]

## Stats
- Stories closed: [N]
- Bugs closed: [N]
- Test files added: [N]
- LOC delta: [+P / -Q]

Read the full file on GitHub · 252 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. 4d ago First seen · 252 lines · 43 tokens per session scan A 4d8b10696675

Subscribe to this mod's changes

changelog is a skill published in the GitHub repository cenconq25/claude-code-app-studio (40 stars, last pushed 4mo ago), licensed MIT. It adds 43 tokens to every session and 1,761 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-09-03.