Help us improve
Share bugs, ideas, or general feedback.
From grimoire
Writes or updates a CHANGELOG following Keep a Changelog format. Translates commits into user-facing entries, highlights breaking changes, and links versions.
npx claudepluginhub jeffreytse/grimoire --plugin grimoireHow this skill is triggered — by the user, by Claude, or both
Slash command
/grimoire:write-changelogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produce a human-readable changelog that communicates what changed, for whom, and why.
Converts git logs, commit lists, or release notes into a polished, categorized changelog following Keep a Changelog conventions. Use when writing release notes or generating CHANGELOG.md entries.
Generates changelog entries following Keep a Changelog format by reviewing Git history, classifying changes into Added, Changed, Deprecated, Removed, Fixed, Security categories with user-focused wording.
Generate changelogs from git history with user impact notes and support guidance, following Keep a Changelog standard.
Share bugs, ideas, or general feedback.
Produce a human-readable changelog that communicates what changed, for whom, and why.
Adopted by: Most major open-source projects (Node.js, Vue, Angular, Rails); mandated by Conventional Commits adopters Impact: Changelogs reduce support tickets at release time by giving users a clear upgrade path; Angular's adoption of Conventional Commits automated changelog generation and halved release preparation time.
A changelog is a contract with users. It separates "what the code did" (commit log) from "what users need to know" (changelog). The Keep a Changelog format provides a widely understood, machine-parseable structure.
## [version] - YYYY-MM-DD with subsections Added, Changed, Deprecated, Removed, Fixed, Security.git log v1.2.0..HEAD --oneline or parse Conventional Commit messages with a tool (standard-version, release-please, semantic-release).BREAKING CHANGE: or a visible banner; explain migration steps.## [Unreleased] at the top during development; move it to a versioned section at release.[1.3.0]: https://github.com/org/repo/compare/v1.2.0...v1.3.0.## [2.4.0] - 2026-05-01
### Added
- OAuth 2.0 login via Google and GitHub providers.
### Fixed
- Password reset email not sending when username contained special characters.
### Security
- Updated dependency `axios` to patch CVE-2026-12345 (SSRF vulnerability).