| name | technical-changelog |
| description | Generate a diff-grounded, one-page technical changelog for a Domotion release — from the actual code changes between the last production tag and HEAD (the next, still-unreleased version). Asks for the next version number, since HEAD is not yet in package.json. |
| allowed-tools | Read, Grep, Glob, Bash, Edit, Write |
Produce a one-page technical report of what changed for a release, stored in
docs/technical-changelog/<base>-<next>.md. The report must be grounded in the real
diff — added/modified/removed code, API/flag/bin/dep deltas — not commit messages or
the requirements docs (those describe the end state and the whole feature history, so
they routinely credit the range with work that predates it, or describe posture that was
already true). Every claim is a verified delta between the base tag and HEAD.
The two facts that make this skill necessary
- HEAD is the next, unreleased version.
package.json still holds the last released
version (Domotion bumps it at release time), so the release number can't be read from the
repo — you must ask the user what the next planned version is.
- The base is always the most recent production release tag (e.g.
v0.21.1), and the
range is <base>..HEAD. Pre-release tags (-beta, -rc) are never the base.
Steps
-
Ask for the next release number first. Use AskUserQuestion (or ask in prose):
"What's the next planned release version for this changelog?" Do not guess and do not
read it from package.json (that's the previous release). Accept e.g. 0.22.0 / v0.22.0.
-
Run the analysis script — it does the deterministic git work:
node scripts/changelog-analysis.mjs --next <version>
It auto-detects the base as the newest production vX.Y.Z tag that is an ancestor of
HEAD, buckets the line delta by area (src/* product buckets vs docs vs the marketing
site/ vs .claude/.hotsheet scaffolding vs generated assets like schemas/,
examples/output/, and *.generated.ts), gives a product-only total, lists
added/removed files and candidate new subsystems, and extracts the public-API
export (src/index.ts barrel), CLI-flag (src/cli/*), published-bin
(package.json bin), and dependency deltas. Override the base with --base <tag> only
if the user asks (it warns if a newer production tag exists than the one it picked).
-
Read the real diffs — do not stop at the script. The script tells you where to
look; the narrative comes from the actual changes. For each non-trivial area:
git diff <base>..HEAD -- <path>
And verify every "new" claim against the base tree rather than trusting a commit
subject:
git cat-file -e <base>:<file>
git show <base>:<file> | grep -c <sym>
git ls-tree -r --name-only <base> -- src/
Classic traps to check: a subsystem that looks new but existed at the base; a feature
added and removed within the same range (nets to zero at HEAD — say so); a platform
posture ("all three platforms calibrated", "live resolver default-on") that was already
true at the base (baseline, not a change); a dependency bumped in two hops (report
the full base→HEAD delta). For Domotion specifically: don't count regenerated
examples/output/*.svg, schemas/*.json, or *.generated.ts as engineering — they're
deterministic build output.
-
Write the report to docs/technical-changelog/<base>-<next>.md (the script prints
the exact suggested path). Keep it to ~one page. It must contain, in this spirit:
- Header: the range (
<base>..HEAD), commit count, and a note that HEAD is untagged
/ the "next" number is a label. State it's derived from the diff, not commit prose.
- Honest size: the area-by-area split from the script, and the product-only
+/- total called out separately from the raw total (which is inflated by docs, the
site/, generated assets, and .claude/.hotsheet scaffolding — never present the raw
number as engineering effort).
- Baseline note: one line on what already shipped at the base (so nothing
pre-existing reads as new — e.g. if all three platform fallback chains were already
calibrated at the base, that's not a change).
- Per-change sections for the genuine deltas, each carrying its diff evidence
(new files, the export/flag/bin/dep delta,
0-hits → present for behavior). Order by
significance (a net-new subsystem before a doc sync).
- Mermaid diagrams as needed (not gratuitously): a component/flow diagram for a new
subsystem, a sequence diagram for a new round-trip/interaction. Use
<br/> for line
breaks in node labels (not \n) and quote labels containing spaces/punctuation.
-
Validate + finish.
- Sanity-check the mermaid blocks (balanced
[]/quotes; standard flowchart /
sequenceDiagram syntax). If a renderer is available, render to confirm; otherwise a
structural check is fine.
- Re-read the draft against the script output and your
git show <base>:… probes: is
every claim a real delta? Cut or re-label anything that describes the baseline.
- Committing is optional and follows the repo's git rules (CLAUDE.md § Git: commit when
it's a clean unit; never
git push without explicit permission; American-English
spelling; no Anthropic co-author trailer; write the message via git commit -F tempfile,
no hard line-wrapping).
Guardrails
- Diff over prose. If a claim isn't backed by a file/line change you actually read,
don't make it. Commit subjects and
docs/ are leads to verify, not sources to quote.
- Never inflate. Lead with product-only line counts; label docs, the marketing
site/,
generated assets, and agent/skill scaffolding as non-engineering.
- Attribute to the range only. When unsure whether something is new, run the
git cat-file -e <base>:<file> / git show <base>:<file> probe before writing it up.