changelog-manager

changelog-manager is a skill for Claude Code, Codex from sequenzia/agent-alchemy. It costs 25 tokens per session (2,483 once invoked), scanned A, original, MIT.

A Git history tool that updates the Unreleased section of CHANGELOG.md using the Keep a Changelog format.

In plain words
What is it for?
It helps maintain changelogs and summarize changes made since the last software release.
Why use it?
It removes the need to manually inspect commits and turn them into release notes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps maintain changelogs and summarize changes made since the last software release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sequenzia/agent-alchemy/changelog-manager
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 sequenzia/agent-alchemy --skill changelog-manager
Clone the repo
git clone --depth 1 https://github.com/sequenzia/agent-alchemy

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/sequenzia/agent-alchemy/changelog-manager.svg)](https://agentmods.dev/skills/sequenzia/agent-alchemy/changelog-manager)
Your own site
<a href="https://agentmods.dev/skills/sequenzia/agent-alchemy/changelog-manager"><img src="https://agentmods.dev/badge/skills/sequenzia/agent-alchemy/changelog-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,483 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.00025 $0.02483
Opus 5 $0.00013 $0.01241
Sonnet 5 $0.00005 $0.00497
Haiku 4.5 $0.00003 $0.00248

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

Security

Grade A, and why

changelog-manager 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.

ported/20260304-102613/dev-tools/skills/changelog-manager/SKILL.md · 328 lines

How it starts

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

Changelog Manager

When invoked, perform the following changelog management tasks: analyze git history and update CHANGELOG.md with well-written entries for the [Unreleased] section following the Keep a Changelog format.

Prerequisites

No external skills are required. This skill operates independently.

Workflow

Execute these steps in order:

Step 1: Find and Read CHANGELOG.md

  1. Look for CHANGELOG.md in the repository root:

    ls -la CHANGELOG.md
    
  2. If not found, check common locations or prompt the user:

    • docs/CHANGELOG.md
    • CHANGES.md
  3. Read the changelog and identify:

    • The last released version (e.g., ## [0.2.0])
    • Existing entries under ## [Unreleased]
    • The changelog format and style used

If no CHANGELOG.md exists, ask the user if they want one created.

Step 2: Get Git History Since Last Release (Enhanced)

Path filter note: If a path filter is provided in the prompt (e.g., -- agent-alchemy/sdd/), append it to all git log commands in this step to scope results to that sub-project.

  1. Find the tag for the last release:

    git tag --list 'v*' --sort=-version:refname | head -5
    
  2. Get commits with extended format including body (for breaking change notices):

    git log v{version}..HEAD --format="%H|%s|%b" --no-merges [path_filter]
    

    If no tags exist, get recent commits with warning:

    git log --format="%H|%s|%b" --no-merges -50 [path_filter]
    
  3. Extract PR/issue references for later enrichment:

    git log v{version}..HEAD --no-merges --oneline [path_filter] | grep -oE '#[0-9]+' | sort -u
    
  4. For more context on specific commits, use:

    git show --stat {commit_sha}
    

Step 3: Analyze File Changes

Purpose: Understand scope and impact of changes.

  1. Get files changed with status (A=Added, M=Modified, D=Deleted, R=Renamed):
    git diff v{version}..HEAD --name-status [path_filter]
    

Read the full file on GitHub · 328 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 · 328 lines · 25 tokens per session scan A 374d729a59ba

Subscribe to this mod's changes

changelog-manager is a skill published in the GitHub repository sequenzia/agent-alchemy (44 stars, last pushed 3mo ago), licensed MIT. It adds 25 tokens to every session and 2,483 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-09-03.