Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From gitmastery
Generate changelog from git commits following Keep a Changelog format
npx claudepluginhub jugrajsingh/skillgarden --plugin gitmasteryHow this skill is triggered — by the user, by Claude, or both
Slash command
/gitmastery:generating-changelogThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate structured changelog from commits.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Generate structured changelog from commits.
/gitmastery:changelog # Since last tag
/gitmastery:changelog v1.2.0 # Since specific tag
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "")
git log $LAST_TAG..HEAD --format="%H|%s|%an" --reverse
| Type | Section |
|---|---|
| feat | Added |
| fix | Fixed |
| perf, refactor | Changed |
| BREAKING | Changed (Breaking) |
| security | Security |
| deprecate | Deprecated |
| remove | Removed |
Excluded: chore, build, ci, test
## [Unreleased] - YYYY-MM-DD
### Added
- New user authentication system (#123)
- Email verification for new users
### Changed
- **BREAKING**: API endpoint changed from /v1 to /v2
- Optimized database queries
### Fixed
- Memory leak in WebSocket connections (#167)
AskUserQuestion:
question: "Write changelog to CHANGELOG.md?"
options:
- "Yes - prepend to file"
- "Preview only"
- "Cancel"
Based on changes: