changelog

changelog is a skill for Claude Code from asysta-act/agent-flow. It costs 11 tokens per session (561 once invoked), scanned A, original, MIT.

A changelog generator that turns merged pull requests into a CHANGELOG.md file, using the commits since the last Git tag.

In plain words
What is it for?
Use it to prepare release notes from merged pull requests and save them to CHANGELOG.md. It supports repositories that use merge commits, squash merges, or fast-forward merges.
Why use it?
It removes the manual work of finding recent changes and organizing them for release notes. It can also use pull-request titles and Conventional Commits prefixes such as feat and fix.

Skill for Claude Code

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

Part of the agent-flow plugin — 17 skills, 17 agents shipped together

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.

agentmods
npx agentmods add skills/asysta-act/agent-flow/changelog
Any agent
npx skills add asysta-act/agent-flow --skill changelog
Clone the repo
git clone --depth 1 https://github.com/asysta-act/agent-flow

Made for: Claude Code.

Or install agent-flow, the plugin that ships this one along with the rest of its 17 skills, 17 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 changelog

README.md
[![agentmods](https://agentmods.dev/badge/skills/asysta-act/agent-flow/changelog.svg)](https://agentmods.dev/skills/asysta-act/agent-flow/changelog)
Your own site
<a href="https://agentmods.dev/skills/asysta-act/agent-flow/changelog"><img src="https://agentmods.dev/badge/skills/asysta-act/agent-flow/changelog.svg" alt="Measured on agentmods" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 561 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.00011 $0.00561
Opus 5 $0.00005 $0.00280
Sonnet 5 $0.00002 $0.00112
Haiku 4.5 $0.00001 $0.00056

Measured 6d ago against content hash bdbba8b1af17, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 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.

skills/changelog/SKILL.md · 72 lines

How it starts

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

Changelog

Generate a changelog from merged PRs since the last git tag. Write to CHANGELOG.md.

0. MCP pre-flight check

Before any pipeline operation, verify MCP tool availability:

  • Read Type from Automation Config (Issue Tracker section)
  • Check that at least one mcp__* tool matching the tracker type is accessible
  • If not accessible → STOP with: "Cannot connect to your {Type} issue tracker. Is the {Type} integration configured? Run /agent-flow:check-setup for diagnostics."

Steps

  1. Read Automation Config from CLAUDE.md:

    • Source Control → Remote
    • Issue Tracker → Type (default: youtrack) If Automation Config is missing, use git remote and default youtrack.
  2. Find the last git tag:

    git tag --sort=-version:refname | head -1
    

    If no tag exists, use the entire history.

  3. Get merged commits since the tag:

    git log {last_tag}..HEAD --oneline --merges
    

    If --merges returns no results (squash/ff merge workflow), use git log {tag}..HEAD --oneline without filter.

  4. For each merge commit: retrieve the PR number and title via source control MCP.

  5. Categorize by Conventional Commits prefixes:

    • feat:New Features
    • fix:Fixes
    • docs:, chore:, refactor:, test:, ci:Internal
    • Other → Other Changes
  6. Generate a changelog section in Keep a Changelog format:

## [{version}] — {date YYYY-MM-DD}

### New Features
- feat: description from PR title (#42)

### Fixes
- fix: description from PR title (#39)

### Internal
- chore: description (#40)
  1. Write to CHANGELOG.md:

    • If the file does not exist, create it with the header # Changelog
    • If it exists, insert the new section below the header (above existing versions)
  2. Display the result: "Changelog updated: {count} changes in version {version}"

Rules

  • Format: Keep a Changelog (English)
  • PRs without a Conventional Commits prefix → "Other Changes" section
  • Do not display empty categories

Read the full file on GitHub · 72 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 · 72 lines · 11 tokens per session scan A bdbba8b1af17

Subscribe to this mod's changes

changelog is a skill published in the GitHub repository asysta-act/agent-flow (12 stars, last pushed 2mo ago), licensed MIT. It adds 11 tokens to every session and 561 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-30.

Related

Other skills, from other repositories

agent-framework-py-release

Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…

microsoft/agent-framework · 103 tokens

release

Cut a FastMCP release end to end. Use when the maintainer says "cut a release", "prep a patch", "ship 4.x.y", or asks what a release would contain. Covers the notes preview, the title pun, the docs changelog PR that must land before the tag, the tag itself, the publish fan-out, and verifying gofastmcp.com actually…

PrefectHQ/fastmcp · 83 tokens

release-notes

Draft short release notes from a list of changes. Use when the user asks for changelogs, release notes, or a concise product update.

cloudflare/agents · 33 tokens

changelog

Generate or update the CHANGELOG.md for a new release version. Use when the user says "generate changelog", "update changelog", "write release notes", or asks to prepare a changelog for a version like "changelog for 0.5.3".

entireio/cli · 58 tokens

release-validation

Use this skill when validating a MeshLLM release candidate or current HEAD against the last GitHub release, assembling the canonical feature/fix/modification inventory, testing locally built release bundles on user-approved real hosts and private meshes, deciding release readiness, or producing a formal…

Mesh-LLM/mesh-llm · 62 tokens

changelog

Turn a range of commits or merged PRs into a changelog entry grouped by change type. Use when the user asks for release notes, a changelog, or "what changed" between two points.

omnigent-ai/omnigent · 44 tokens