make-changelog

make-changelog is a skill for Claude Code, Codex from mir-am/skills-agents-ai-coding. It costs 19 tokens per session (3,956 once invoked), scanned A, original, MIT.

A tool that creates the first `CHANGELOG.md` file for an existing Git project. A changelog records what changed between software releases, using the Keep a Changelog structure.

In plain words
What is it for?
Use it when a project has no changelog and you want to document its current features before making the first release.
Why use it?
It turns the project's current features and history into an initial release record, so users can see what exists before versioned releases begin.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions OpenCode.

Good fit Use it when a project has no changelog and you want to document its current features before making the first release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mir-am/skills-agents-ai-coding/make-changelog
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 mir-am/skills-agents-ai-coding --skill make-changelog
Clone the repo
git clone --depth 1 https://github.com/mir-am/skills-agents-ai-coding

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 make-changelog

README.md
[![agentmods](https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/make-changelog/github.svg)](https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/make-changelog)
Your own site
<a href="https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/make-changelog"><img src="https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/make-changelog/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for make-changelog

Your own site · 80×15
<a href="https://agentmods.dev/skills/mir-am/skills-agents-ai-coding/make-changelog"><img src="https://agentmods.dev/badge/skills/mir-am/skills-agents-ai-coding/make-changelog.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,956 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.00019 $0.03956
Opus 5 $0.00010 $0.01978
Sonnet 5 $0.00004 $0.00791
Haiku 4.5 $0.00002 $0.00396

Measured 9d ago against content hash 16b4a618f0aa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

make-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 9d 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/make-changelog/SKILL.md · 432 lines

How it starts

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

What I do

  • Create initial CHANGELOG.md file using Keep a Changelog format
  • Extract up to 10 major features from README.md, commit history, and codebase structure
  • Place all extracted entries under [Unreleased] section (no version number yet)
  • Classify entries into Added or Misc based on whether they describe new capabilities or notable catch-all code changes
  • Include empty sections for Changed, Deprecated, Removed, Fixed, Security, and Misc at the end
  • Note adherence to Semantic Versioning for future releases
  • Notify if additional important features exist beyond the top 10
  • Provide guidance on moving to versioned releases later

When to use me

Use this skill when:

  • Starting changelog documentation for an existing project
  • Project has no CHANGELOG.md file yet
  • You want to document current state before making first release
  • You need a Keep a Changelog compliant starting point

Prerequisites

Required:

  • Must be a git repository
  • Must have main or master branch

Optional:

  • README.md file (used for feature extraction if present)

Validation checks:

# Check if git repo
git rev-parse --git-dir

# Check if CHANGELOG.md already exists
[ -f CHANGELOG.md ]

Error messages:

  • Not a git repo → "Error: This skill requires a git repository for context gathering."
  • CHANGELOG.md exists → "Error: CHANGELOG.md already exists. This skill is for first-time changelog creation only."
  • No main/master branch → "Error: No main or master branch found. Please create a default branch first."

References

This skill follows:

If you need to fetch detailed information about changelog format or versioning rules during execution, use the WebFetch tool with these URLs.

Workflow

Step 1: Validate Prerequisites

# Check if git repository
git rev-parse --git-dir 2>/dev/null

If fails → error: "Error: This skill requires a git repository for context gathering."

Read the full file on GitHub · 432 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. 9d ago First seen · 432 lines · 19 tokens per session scan A 16b4a618f0aa

Subscribe to this mod's changes

make-changelog is a skill published in the GitHub repository mir-am/skills-agents-ai-coding (2 stars, last pushed 4mo ago), licensed MIT. It adds 19 tokens to every session and 3,956 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 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-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

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

github

Drive GitHub via the official gh CLI — repos, issues, pull requests, releases, gists, Actions runs, and raw REST through gh api. Use when the user asks to inspect or manage GitHub.

AtomicBot-ai/atomic-agent · 48 tokens

release-notes

Create release notes for a new version tag. Gathers all commits, PRs, issues fixed, and breaking changes since a previous release. Creates the release notes markdown file, tags the repo, and pushes. Asks the user to confirm the base version to diff against.

agentic-community/mcp-gateway-registry · 59 tokens

skill-upstream-pr

Improve an open-source GitHub skill and open a friendly suggestion PR upstream: fork, run skill-auto-improver, attach asm eval before/after metrics. Don't use for local-only skills, authoring from scratch, bulk repos, or registry publish.

luongnv89/asm · 56 tokens