Changelog Skill
Produce a concise, user-facing CHANGELOG entry for the current change.
Steps
- Inspect what changed (read the diff; use the Grep/Read tools, or
git diff --stagedvia host Bash if needed). - Group changes into Added / Changed / Fixed / Removed.
- Write entries from the user's perspective — what they can now do or what broke — not the internal implementation.
- Keep each bullet to one line; lead with a verb.
Format
## [Unreleased]
### Added
- <feature, user-facing>
### Fixed
- <bug, what was wrong before>
Rules
- No internal jargon or file paths in the entries.
- Omit empty sections.
- One entry per meaningful change; don't pad.