changelog-composer

Generates structured changelogs and release notes from git history and PR descriptions. Classifies changes into breaking, features, fixes, performance, and docs. Filters internal-only changes, detects breaking changes, and produces human-readable entries linked to source PRs. Triggers on: "generate changelog", "write release notes", "compose changelog", "what changed since", "changes since last release", "prepare release", "release notes for", "changelog for", "summarize changes", "diff since tag". Use this skill when preparing a release and needing to summarize changes for users.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "changelog-composer" with this command: npx skills add mathews-tom/praxis-skills/mathews-tom-praxis-skills-changelog-composer

Changelog Composer

Transforms raw git history and PR descriptions into polished, audience-appropriate changelogs. Parses conventional commits, classifies changes by impact category, filters internal-only modifications, and produces structured release notes with PR links — following Keep a Changelog conventions.

Reference Files

FileContentsLoad When
references/conventional-commits.mdCommit type parsing, scope extraction, breaking change indicatorsRepository uses conventional commits
references/categorization-rules.mdChange classification logic, audience filtering, severity orderingAlways
references/audience-filter.mdUser-facing vs internal change detection, exclusion patternsAlways
references/changelog-formats.mdKeep a Changelog, GitHub Releases, announcement copy templatesFormat selection needed

Prerequisites

  • git — access to the repository history
  • gh (optional) — GitHub CLI for PR description extraction
  • A tagging strategy (semver tags) for identifying release boundaries

Workflow

Phase 1: Gather Raw Changes

Collect all changes between the previous release and the current state:

  1. Identify boundaries — Find the last release tag: git describe --tags --abbrev=0. If no tags exist, use the initial commit or a user-specified starting point.
  2. Extract commitsgit log <last-tag>..HEAD --oneline --no-merges
  3. Extract PR titlesgh pr list --state merged --base main --search "merged:>YYYY-MM-DD" or parse merge commit messages.
  4. Parse conventional commits — If the repository follows conventional commits (feat:, fix:, docs:, etc.), extract type, scope, and description. See references/conventional-commits.md.
  5. Collect breaking change indicators — Look for BREAKING CHANGE: in commit bodies, ! after type (feat!:), or explicit annotations in PR descriptions.

Phase 2: Classify Changes

Categorize each change by its impact:

CategoryConventional Commit TypeIndicators
Breaking Changesfeat!:, BREAKING CHANGE:API removal, signature change, behavior change
Featuresfeat:New capability, new endpoint, new command
Fixesfix:Bug correction, error handling improvement
Performanceperf:Speed improvement, memory reduction
Documentationdocs:README, API docs, guides
Internalchore:, ci:, refactor:, test:, build:No user-facing impact

For repositories without conventional commits, classify by reading the commit message and changed files. Code changes to public API → Feature or Fix. Test-only changes → Internal.

Phase 3: Filter for Audience

  1. Exclude internal changes by default:

    • CI/CD configuration changes
    • Test additions/modifications
    • Dependency bumps (unless security-relevant)
    • Code refactoring with no behavior change
    • Build system changes
  2. Include internal changes only when:

    • They represent significant architecture shifts users should know about
    • They affect development workflow (contributing guide changes)
    • The changelog targets developers, not end-users
  3. Highlight breaking changes prominently — always at the top, always with migration guidance.

Phase 4: Compose Entries

For each included change, write a human-readable description:

  1. Lead with the impact — "Users can now..." or "Fixed issue where..."
  2. Be specific — "Reduced memory usage by 40% for large file processing" not "Performance improvements"
  3. Include migration guidance for breaking changes — what the user must change
  4. Link to source — PR number, issue number, or commit hash

Phase 5: Output

Assemble the changelog in the requested format, ordered by severity:

  1. Breaking Changes (always first)
  2. Features
  3. Fixes
  4. Performance
  5. Documentation

Output Format

## [{version}] - {YYYY-MM-DD}

### Breaking Changes
- **`function_name` parameter renamed** — `old_param` is now `new_param`.
  Migration: find/replace `old_param=` with `new_param=` in all call sites. ([#{pr}]({url}))

### Features
- **{Feature name}** — {What it enables and why it matters}. ([#{pr}]({url}))

### Fixes
- Fixed {symptom} when {condition}. ([#{pr}]({url}))

### Performance
- {Operation} is now {X}x faster / uses {X}% less memory. ([#{pr}]({url}))

### Documentation
- Added {guide/reference} for {topic}. ([#{pr}]({url}))

Configuring Scope

ModeInputOutputWhen to Use
releaseTag-to-HEADFull changelog entryPreparing a versioned release
sprintDate range or commit rangeSummary of changesSprint review, status update
prSingle PROne-line changelog entryPR description template

Calibration Rules

  1. User impact first. Every entry should answer "what does this mean for the user?" not "what did the developer do?"
  2. Breaking changes are non-negotiable. Never omit or bury breaking changes. They go first, with migration guidance.
  3. Specific over vague. "Fixed login timeout on slow connections" beats "Fixed bug." "Added CSV export for reports" beats "New feature."
  4. Link everything. Every entry links to its source PR or issue. Users who want details can follow the link.
  5. Exclude noise. Internal refactoring, dependency bumps, and CI changes do not belong in user-facing changelogs unless they have user-visible impact.

Error Handling

ProblemResolution
No tags exist in repositoryAsk for a starting commit or date. Default to the initial commit if the repository is small.
Repository doesn't use conventional commitsClassify by reading commit messages and changed files. Note reduced classification accuracy.
PR descriptions are empty or low-qualityFall back to commit messages. Flag entries that may need manual review.
Ambiguous change classificationDefault to "Features" for additions, "Fixes" for modifications. Mark uncertain entries for review.
Too many changes for a single releaseGroup by component/module. Consider whether the release should be split.
Merge commits obscure individual changesUse --no-merges to skip merge commits. Parse individual commits within merged PRs.

When NOT to Compose

Push back if:

  • The user wants to auto-publish release notes without review — changelogs require human judgment
  • The repository has no meaningful commit history (single "initial commit" with everything)
  • The request is for marketing copy, not technical release notes — different skill
  • The changes are not yet merged — changelog is for shipped changes, not in-progress work

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

manuscript-review

No summary provided by upstream source.

Repository SourceNeeds Review
General

html-presentation

No summary provided by upstream source.

Repository SourceNeeds Review
General

concept-to-image

No summary provided by upstream source.

Repository SourceNeeds Review
General

md-to-pdf

No summary provided by upstream source.

Repository SourceNeeds Review