askill
changelog

changelogSafety 75Repository

Generate changelog from git commits following Keep a Changelog format

0 stars
1.2k downloads
Updated 2/10/2026

Package Files

Loading files...
SKILL.md

Changelog Generation

Generate structured changelog from commits.

Usage

/gitmastery:changelog           # Since last tag
/gitmastery:changelog v1.2.0    # Since specific tag

Workflow

1. Get Commits

LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "")
git log $LAST_TAG..HEAD --format="%H|%s|%an" --reverse

2. Map to Sections

TypeSection
featAdded
fixFixed
perf, refactorChanged
BREAKINGChanged (Breaking)
securitySecurity
deprecateDeprecated
removeRemoved

Excluded: chore, build, ci, test

3. Generate Output

## [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)

4. Ask User

AskUserQuestion:
  question: "Write changelog to CHANGELOG.md?"
  options:
    - "Yes - prepend to file"
    - "Preview only"
    - "Cancel"

Version Suggestion

Based on changes:

  • MAJOR - Breaking changes (! suffix or BREAKING CHANGE footer)
  • MINOR - New features (feat: type)
  • PATCH - Fixes only (fix:, perf: types)

Quality Rules

  • Concise: <72 chars per entry
  • Imperative: "Add feature" not "Added"
  • User-focused: Impact, not implementation
  • Skip generic: WIP, temp commits

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

88/100Analyzed 2/16/2026

Well-crafted changelog generation skill with clear workflow, executable commands, and quality guidelines following Keep a Changelog standard

75
90
80
85
90

Metadata

Licenseunknown
Version-
Updated2/10/2026
Publisherjugrajsingh

Tags

apici-cddatabasegithub-actionssecuritytesting