Release notes changelog normalizer
Skill sisodiabhumca/agent-skills/skills/release-notes-changelog-normalizer
Vendor-neutral skill to normalize raw release notes into Keep a Changelog-style entries with consistent headings.From its SKILL.md
npx -y skills add sisodiabhumca/agent-skills --skill release-notes-changelog-normalizerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.0 KB, 204 tokens by cl100k_base, as published. Nobody here has run it
When to invoke
- You have messy release notes from commits/tickets and need a clean changelog entry.
- You need to standardize categories (Added/Changed/Fixed/Deprecated/Removed/Security).
Inputs needed
- A JSON file with:
version(string)date(string)items[](strings), each a raw note line
Workflow
- Normalize text: trim, de-duplicate, enforce sentence casing.
- Classify each item into a changelog category using keyword heuristics.
- Output a structured changelog entry suitable for inclusion in CHANGELOG.md.
Output format
- Markdown text written to an output file.
Guardrails
- Do not fabricate features; only reformat and categorize provided items.
- Keep original meaning; avoid rewriting beyond light normalization.
Reference code
release_notes_changelog_normalizer.pyreads JSON and writes a markdown changelog entry.
What ships with it: 2 files
3.0 KB alongside SKILL.md, 1 of them executable
- README.md369 B
- release_notes_changelog_normalizer.pyruns2.7 KB