changelog-manager

changelog-manager is an agent for coding agents from sequenzia/agent-alchemy. It costs 20 tokens per session (2,538 once invoked), scanned A, original, MIT.

An agent for maintaining CHANGELOG.md, a file that records changes between software releases. It reads the existing format and git history, then prepares entries for the Unreleased section.

In plain words
What is it for?
Use it to review commits since the last version tag, capture breaking changes, and update a changelog or identify when one is missing.
Why use it?
It saves you from manually reconstructing recent changes and helps keep release notes consistent with the repository’s history.

Agent

Part of the agent-alchemy-dev-tools plugin — 9 skills, 4 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 agents/sequenzia/agent-alchemy/changelog-manager
Clone the repo
git clone --depth 1 https://github.com/sequenzia/agent-alchemy

Or install agent-alchemy-dev-tools, the plugin that ships this one along with the rest of its 9 skills, 4 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-manager

README.md
[![agentmods](https://agentmods.dev/badge/agents/sequenzia/agent-alchemy/changelog-manager.svg)](https://agentmods.dev/agents/sequenzia/agent-alchemy/changelog-manager)
Your own site
<a href="https://agentmods.dev/agents/sequenzia/agent-alchemy/changelog-manager"><img src="https://agentmods.dev/badge/agents/sequenzia/agent-alchemy/changelog-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,538 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 $0.00020 $0.02538
Opus 5 $0.00010 $0.01269
Sonnet 5 $0.00004 $0.00508
Haiku 4.5 $0.00002 $0.00254

Measured 5d ago against content hash 1e9ff7b41f11, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 5d 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/dev-tools/agents/changelog-manager.md · 330 lines

How it starts

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

Changelog Agent

You are an expert at maintaining changelogs following the Keep a Changelog format. Your role is to analyze git history and help update CHANGELOG.md with well-written entries for the [Unreleased] section.

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 ask 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 you to create one.

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.

Path filter note: If a path filter is provided in the prompt, append it to the git diff commands below to scope results to that sub-project.

  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 · 330 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. 5d ago First seen · 330 lines · 20 tokens per session scan A 1e9ff7b41f11

Subscribe to this mod's changes

changelog-manager is an agent published in the GitHub repository sequenzia/agent-alchemy (43 stars, last pushed 3mo ago), licensed MIT. It adds 20 tokens to every session and 2,538 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 agents, from other repositories

release-checklist

Manual gate. Automated checks (JSON, layout, frontmatter, clean surface, bundled MCP layout, fixed npm release-group consistency, README badges, release notes present, seam test, adapter floor self-check) run via python scripts/release.py (dry-run) or python scripts/release.py --apply (creates the tag). Static…

Bandersnatch0x/design-playbook · 0 tokens

ba-designer

Use when execute-round skill's Phase 2 (BA design pass) needs to produce a complete BA design doc for the current round. Generates D-1..D-N decisions, reference scan triplet, file-level decomposition, and test plan.

Arch1eSUN/Arcgentic · 53 tokens

developer

Use when execute-round's Phase 3 (dev body) needs to implement BA design exactly. Writes source + tests per file decomposition, runs pre-audit quality gates, registers forward-debts, and reports diff summary.

Arch1eSUN/Arcgentic · 47 tokens

agents-expert

Expert on creating and configuring custom Claude Code agents (subagents). Use PROACTIVELY when the user mentions creating an agent, custom agent, or subagent; when designing specialized agents for project tasks; when troubleshooting agent invocation, tools, or model config; or during /agents-generate. Knows the…

claude-world/director-mode-lite · 138 tokens

autoevolve-optimizer

Autonomous optimization loop for config artifacts (detection-index, context-router) - mutate, score deterministically, keep only improvements. Two code-enforced safety gates wrap the loop.

primeline-ai/evolving-lite · 36 tokens

health-monitor

Deep health analysis of Evolving Lite - sentinel history, hook performance, recommendations.

primeline-ai/evolving-lite · 15 tokens