Changelog - 2026-09-07
changes lists what shipped between two versions
New FeatureIn one line. changes names the changelog entries between two versions of a package, each with the id get reads it in full by.
Ask for a window:
{ "package": "kernel", "from": "0.2.0-13", "to": "0.2.0-16" }{
"package": "kernel",
"from": "0.2.0-13",
"to": "0.2.0-16",
"entries": [
{
"id": "changelog:2026-09-05-boot-checks",
"date": "2026-09-05",
"title": "Boot Checks - Every Binding Resolves",
"kind": "New Feature",
"packages": ["kernel"]
}
]
}Pass an id to get to read that entry in full.
Leave package out and the window spans every package. Then from and to are dates, not versions.
version says whether an install is behind
New Featureversion reads one directory's package.json, resolves the @venizia/* versions really installed there, and compares them against the newest this build knows:
{ "cwd": "/path/to/your/app" }{
"installed": { "@venizia/ignis-kernel": "0.2.0-11" },
"snapshot": { "helpers": "0.2.0-15", "kernel": "0.2.0-21" },
"behind": [{ "package": "kernel", "installed": "0.2.0-11", "newest": "0.2.0-21" }]
}A behind row names the package the way changes takes it, so the follow-up call is one step.
The problem it solves
You upgrade a package and want to know what you are getting. The changelogs hold the answer, spread across more than a hundred files. Reading them by date means knowing which dates your two versions bracket, and no page carries that mapping.
The release commits already did. Nothing read them.
What changed
- A generated release table.
make releases-genwrites.agents/knowledge/reference/releases.jsonfrom everychore(<package>): release v<version>commit and every dated changelog file. - A
changestool. Give it a package plus two versions, or no package plus two dates. It answers newest first, inside the same 2,000-character budgetsearchuses, and saystruncatedwhen it trimmed. - A
versiontool. It resolves the real installed version fromnode_modules, not the declared range. An unresolved version readsnulland never counts as behind. - No registry call.
versionreports the versions this build knows about, not what npm currently publishes. make releases-checkis a build gate. It runs insidemake build-all, next tosymbols-check, and fails when the table drifts.
Who is affected
- Anyone running
@venizia/ignis-atlas.tools/listnow returns five tools. The npm snapshot ships the table, so both work from an install. - Maintainers of this repository. Run
make releases-genafter a release commit or a new changelog page. A stale table failsmake build-all. - Everyone else. No action needed.
Details
| Symbol | Change | Package |
|---|---|---|
version (MCP tool) | New | @venizia/ignis-atlas |
changes (MCP tool) | New | @venizia/ignis-atlas |
releases.json (generated) | New | .agents/knowledge/reference |
make releases-gen, make releases-check | New | Makefile |
One limit is worth knowing. A changelog file that names no package carries an empty packages, so a package filter never returns it - 9 files today. A window between two versions is keyed by commit position, so two releases of one day are still separable.
- Extension page: Atlas.