Skill reference: changelog
Skill reference: changelog
Section titled “Skill reference: changelog”The changelog skill authors one document genre: a CHANGELOG in the Keep a
Changelog format — a human-curated record of notable changes per release. This
reference describes what that document type is, how the skill produces one, when it
earns its place, and the provenance and sources behind it.
| Property | Value |
|---|---|
| Authors | A Keep a Changelog CHANGELOG |
| Purpose group | Release history |
MIF conceptType | semantic |
| Target MIF level | 2 |
| Primary source | Keep a Changelog 1.1.0 |
What this document type is
Section titled “What this document type is”A changelog is a curated, reverse-chronological list of the notable changes in a
project, organised by released version. The Keep a Changelog standard defines its
shape precisely: an entry per version, newest first, with changes grouped under a
fixed set of headings — Added, Changed, Deprecated, Removed,
Fixed, and Security — plus an Unreleased section at the top for changes
not yet shipped. The defining word is human-curated: a changelog is written for
people who want to know what changed and whether they should upgrade, so each line
is a deliberate, readable summary, not a mechanical artifact. Versions are labelled
and ordered by Semantic Versioning, so the changelog and the version numbers tell a
consistent story about the size and risk of each release.
A changelog is not a roadmap of planned work, not a marketing release announcement, and emphatically not a raw dump of git commit log lines — Keep a Changelog calls that last anti-pattern out by name. The whole point is the editorial judgement that selects and phrases what matters to a reader.
How the skill produces one
Section titled “How the skill produces one”changelog is a genre skill: it carries the Keep a Changelog pattern as durable
instructions plus exemplars, and writes the artifact over a MIF floor so the
result is at once a readable history and a machine-conformant unit.
- Pattern, made operational. The skill encodes the structure —
Unreleasedplus per-version sections, the six change groups, newest-first order, SemVer labels — and refuses anti-triggered work (a roadmap, an announcement, or a commit-log dump). - SemVer-aware. Versions follow Semantic Versioning, so the grouping (a
breaking
Removed/Changedversus an additiveAdded) lines up with whether the release is a major, minor, or patch bump. - Exemplars set the bar. Like every genre in the suite it ships
good-l1.md(the MIF Level-1 floor),good.md(the target level — Level 2 here),bad.md(a counter-example), andevals/evals.json. Thecheck-exemplarsgate provesgood-l1.mdvalidates at L1 andgood.mdat its target level. - MIF projection. The document is authored with MIF frontmatter (via the
shared
mif-frontmattersubstrate) and aconceptTypeofsemantic, reflecting that a changelog asserts facts about what each version changed.mif-validateproves the Markdown to JSON-LD round-trip is lossless before the document is considered done.
When it is beneficial
Section titled “When it is beneficial”Reach for changelog whenever a project ships versioned releases that humans
consume — a library, a CLI, an API. Its value is upgrade confidence: a reader
scanning the Added/Changed/Removed/Security groups for the versions
between theirs and the latest can decide quickly whether and how to upgrade,
without reading the diff.
Do not use it for forward-looking plans (a roadmap), for promotional copy (a
release announcement), or as a substitute for the commit history. The cost of the
genre is the editorial discipline: keeping an honest Unreleased section and
curating entries as work lands is ongoing effort, but it is exactly that curation
that distinguishes a changelog from a log dump.
Example
Section titled “Example”A CHANGELOG.md opens with an Unreleased section, then ## [1.4.0] - 2026-05-12
grouping that release’s notable changes — Added a new export format, Changed
the default timeout, Deprecated an old flag, Fixed a race condition, and a
Security note for a patched dependency — followed by earlier versions in
descending order, each labelled with a SemVer number and date.
Provenance & citations
Section titled “Provenance & citations”- Genre source — Keep a Changelog: the canonical format definition, https://keepachangelog.com/en/1.1.0/, with versions ordered by Semantic Versioning, https://semver.org/spec/v2.0.0.html.
- Skill provenance: authored by the
changelogskill in the mif-docs plugin, https://github.com/modeled-information-format/mif-docs-plugin; the skill’s exemplars andevals/define and verify the pattern. - MIF conformance: the document projects to canonical JSON-LD under the MIF
specification, https://mif-spec.dev, and is proven lossless by
mif-validate. - Index: this skill is one entry in the skills by purpose catalog, in the release-history purpose group.