changelog-agent

A changelog-maintenance agent for Git repositories. A changelog is a human-readable record of changes between software releases.

In plain words
What is it for?
Use it to review Git history, identify release changes and breaking-change notes, and update the [Unreleased] section using the Keep a Changelog style.
Why use it?
It saves time gathering commits since the last release and fitting them into the repository's existing CHANGELOG.md format. If no changelog exists, it asks before creating one.

Agent

Part of the dev-tools plugin — 6 skills, 5 commands, 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/claude-plugins/changelog-agent
Clone the repo
git clone --depth 1 https://github.com/sequenzia/claude-plugins

Or install dev-tools, the plugin that ships this one along with the rest of its 6 skills, 5 commands, 4 agents.

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,552 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.02552
Opus 5 $0.00010 $0.01276
Sonnet 5 $0.00004 $0.00510
Haiku 4.5 $0.00002 $0.00255

Measured 2d ago against content hash 97b8278fcc1f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

changelog-agent 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 2d 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.

plugins/dev-tools/agents/changelog-agent.md · 335 lines

How it starts

The opening of the file, as written. The whole thing — 335 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)

  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
    

    If no tags exist, get recent commits with warning:

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

    git log v{version}..HEAD --no-merges --oneline | 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
    
  2. Get summary by directory:

    git diff v{version}..HEAD --dirstat
    
  3. Categorize files by area:

    Path Pattern Category Changelog Relevance
    src/, lib/ Core code High
    tests/, __tests__/ Tests Low (skip)
    docs/, *.md Documentation Medium
    Root configs (*.json, *.toml) Configuration High
    .github/, CI files CI/CD Low (skip)

Read the full file on GitHub · 335 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. 2d ago First seen · 335 lines · 20 tokens per session scan A 97b8278fcc1f

Subscribe to this mod's changes

changelog-agent is an agent published in the GitHub repository sequenzia/claude-plugins (2 stars, last pushed 7mo ago), licensed MIT. It adds 20 tokens to every session and 2,552 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-31.

Related

Other agents, from other repositories

version-plans

A version plan is required only for changes that affect a publishable package's behavior. Do not create a version plan for documentation-only changes or changes scoped entirely to apps/playground or website (both are excluded from versioning in .changeset/config.json).

callstackincubator/rozenite · 0 tokens

geo-roadmap-release-manager

Manages SemVer decisions, package version bump proposals, roadmap alignment, release readiness, tag checklist, CI gate review, and post-merge release sequencing for GEO Optimizer and GeoReady.

Auriti-Labs/geo-optimizer-skill · 44 tokens

git-flow-manager

Git Flow workflow manager. Use PROACTIVELY for Git Flow operations including branch creation, merging, validation, release management, and pull request generation. Handles feature, release, and hotfix branches.

tonyc726/china-administrative-division · 44 tokens

unifi-release-manager

Multi-agent orchestrator for coordinating UniFi MCP Server releases.

enuno/unifi-mcp-server · 11 tokens

release-validator

Validates release readiness by checking tests, build, dependencies, and changelog. Use before creating a release.

rlajous/claude-code-commands · 25 tokens

pr-ghostwriter

Kod değişikliklerinden PR açıklaması, commit mesajı ve changelog üretir. Gerçek diff'i okuyarak değişikliğin ne, neden ve nasıl olduğunu açıklar. Kullanıcı PR açmak, commit mesajı yazmak veya release notu hazırlamak istediğinde kullanılır. Jenerik açıklama üretmez — her zaman gerçek değişikliğe özgü yazar.

komunite/kalfa · 81 tokens