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.
npx agentmods add agents/sequenzia/claude-plugins/changelog-agentgit clone --depth 1 https://github.com/sequenzia/claude-pluginsWhat 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.
| Model | Per session | Once 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 |
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.
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
-
Look for
CHANGELOG.mdin the repository root:ls -la CHANGELOG.md -
If not found, check common locations or ask the user:
docs/CHANGELOG.mdCHANGES.md
-
Read the changelog and identify:
- The last released version (e.g.,
## [0.2.0]) - Existing entries under
## [Unreleased] - The changelog format and style used
- The last released version (e.g.,
If no CHANGELOG.md exists, ask the user if they want you to create one.
Step 2: Get Git History Since Last Release (Enhanced)
-
Find the tag for the last release:
git tag --list 'v*' --sort=-version:refname | head -5 -
Get commits with extended format including body (for breaking change notices):
git log v{version}..HEAD --format="%H|%s|%b" --no-mergesIf no tags exist, get recent commits with warning:
git log --format="%H|%s|%b" --no-merges -50 -
Extract PR/issue references for later enrichment:
git log v{version}..HEAD --no-merges --oneline | grep -oE '#[0-9]+' | sort -u -
For more context on specific commits, use:
git show --stat {commit_sha}
Step 3: Analyze File Changes
Purpose: Understand scope and impact of changes.
-
Get files changed with status (A=Added, M=Modified, D=Deleted, R=Renamed):
git diff v{version}..HEAD --name-status -
Get summary by directory:
git diff v{version}..HEAD --dirstat -
Categorize files by area:
Path Pattern Category Changelog Relevance src/,lib/Core code High tests/,__tests__/Tests Low (skip) docs/,*.mdDocumentation Medium Root configs ( *.json,*.toml)Configuration High .github/, CI filesCI/CD Low (skip)
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.
- 2d ago First seen · 335 lines · 20 tokens per session scan A 97b8278fcc1f
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.
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).
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.
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.
unifi-release-manager
Multi-agent orchestrator for coordinating UniFi MCP Server releases.
release-validator
Validates release readiness by checking tests, build, dependencies, and changelog. Use before creating a release.
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.