Generate Release Notes

Generate comprehensive release notes from git commits and pull requests

✨ The solution you've been looking for

Verified
Tested and verified by our team
18328 Stars

Generate comprehensive release notes for Bit from git commits and pull requests. Use when creating release notes, building changelogs, documenting version releases, or preparing a new Bit release.

release-notes changelog git-commits automation documentation versioning pull-requests github
Repository

See It In Action

Interactive preview & real-world examples

Live Demo
Skill Demo Animation

AI Conversation Simulator

See how users interact with this skill

User Prompt

Generate release notes for Bit from the latest release to HEAD, categorizing all changes into features, improvements, bug fixes, and internal changes

Skill Processing

Analyzing request...

Agent Response

Comprehensive release notes with properly categorized changes, filtered commits, and formatted sections ready for publication

Quick Start (3 Steps)

Get up and running in minutes

1

Install

claude-code skill install generate-release-notes

claude-code skill install generate-release-notes
2

Config

3

First Trigger

@generate-release-notes help

Commands

CommandDescriptionRequired Args
@generate-release-notes prepare-release-notes-for-new-versionGenerate structured release notes for a software release by analyzing commits and PRs between versionsNone
@generate-release-notes create-changelog-between-commitsDocument changes between specific commit ranges for incremental releases or hotfixesNone
@generate-release-notes review-and-filter-commitsAnalyze raw commit history to identify which changes should be included in release documentationNone

Typical Use Cases

Prepare Release Notes for New Version

Generate structured release notes for a software release by analyzing commits and PRs between versions

Create Changelog Between Commits

Document changes between specific commit ranges for incremental releases or hotfixes

Review and Filter Commits

Analyze raw commit history to identify which changes should be included in release documentation

Overview

Generate Release Notes for Bit

This skill helps generate release notes for Bit following the established patterns and guidelines.

Important: Intermediate Files

All intermediate steps must be saved to releases-docs/temp-files/ for review. This folder is gitignored.

Required intermediate files:

  1. raw-commits.md - Raw commit data from GitHub API
  2. filtered-commits.md - Two sections: filtered out commits and kept commits

Workflow

Follow these steps to generate release notes:

Step 1: Setup Temp Directory

First, ensure the temp directory exists:

1mkdir -p releases-docs/temp-files

Step 2: Determine the Commit Range

  1. Get the latest release tag and commit:

     1# Get latest release tag
     2gh release view --repo teambit/bit --json tagName -q '.tagName'
     3
     4# Get the commit SHA for the tag (handles annotated tags)
     5TAG="v1.12.158"  # Replace with actual tag
     6TAG_REF=$(gh api "repos/teambit/bit/git/refs/tags/$TAG" -q '.object.sha')
     7TAG_TYPE=$(gh api "repos/teambit/bit/git/refs/tags/$TAG" -q '.object.type')
     8
     9if [ "$TAG_TYPE" = "tag" ]; then
    10    # Annotated tag - get the commit it points to
    11    RELEASE_COMMIT=$(gh api "repos/teambit/bit/git/tags/$TAG_REF" -q '.object.sha')
    12else
    13    # Lightweight tag - already have the commit
    14    RELEASE_COMMIT=$TAG_REF
    15fi
    
  2. Determine the starting point:

    • If user provides a specific commit hash, use that as FROM_COMMIT
    • If not provided, use HEAD (latest commit on master)

Step 3: Fetch Commits and Save to raw-commits.md

Use the GitHub API to get commits between the release and the starting point:

1# Compare commits between release and HEAD (or specific commit)
2gh api "repos/teambit/bit/compare/${RELEASE_COMMIT}...${FROM_COMMIT}" \
3    --jq '.commits[] | "\(.sha[0:7]) | \(.commit.message | split("\n")[0]) | \(.commit.author.name)"'

Save the output to releases-docs/temp-files/raw-commits.md with the following format:

 1# Raw Commits
 2
 3Generated: {DATE}
 4From: {FROM_COMMIT or HEAD}
 5To: {RELEASE_TAG} ({RELEASE_COMMIT})
 6Total commits: {COUNT}
 7
 8## Commits
 9
10| Hash    | Message                      | Author      |
11| ------- | ---------------------------- | ----------- |
12| abc1234 | feat: add new feature (#123) | Author Name |
13| def5678 | fix: resolve bug (#456)      | Author Name |
14
15...

Step 4: Filter Commits and Save to filtered-commits.md

Analyze each commit and categorize into two groups:

FILTER OUT (do not include in release notes):

  • Version bump commits: bump teambit version to X.X.X [skip ci]
  • CI-only changes: commits that only modify CircleCI config
  • Skip CI markers: commits with [skip ci] in the message
  • Auto-merge commits: Merge branch 'X' into master

KEEP (include in release notes):

  • All feature commits (feat:)
  • All fix commits (fix:)
  • All performance commits (perf:)
  • Dependency updates (go in Internal section)
  • Refactoring commits (go in Internal section)

Save to releases-docs/temp-files/filtered-commits.md with the following format:

 1# Filtered Commits
 2
 3Generated: {DATE}
 4
 5## Filtered Out ({COUNT} commits)
 6
 7These commits are excluded from the release notes:
 8
 9| Hash    | Message                                   | Reason       |
10| ------- | ----------------------------------------- | ------------ |
11| abc1234 | bump teambit version to 1.13.5 [skip ci]  | Version bump |
12| def5678 | ci, temporarily set tag to increment by 2 | CI change    |
13
14...
15
16## Kept for Release Notes ({COUNT} commits)
17
18These commits will be included in the release notes:
19
20| Hash    | Message                         | Category     |
21| ------- | ------------------------------- | ------------ |
22| ghi9012 | feat: add new command (#123)    | New Features |
23| jkl3456 | fix: resolve issue (#456)       | Bug Fixes    |
24| mno7890 | chore(deps): bump lodash (#789) | Internal     |
25
26...

Step 5: Enrich Commit Information

For commits that are merge commits or have unclear messages, fetch PR details:

1# Get PR details by number
2gh pr view 12345 --repo teambit/bit --json title,body,labels
3
4# Search for PR by commit
5gh pr list --repo teambit/bit --search "SHA_HERE" --state merged --json number,title,body

Look for:

  • PR title and description
  • Labels (feat, fix, perf, etc.)
  • Related issues

Step 6: Categorize Changes

Group the KEPT commits into these categories based on content:

CategoryIndicators
New FeaturesNew commands, new major functionality, “Introduce”, “feat:” prefix
ImprovementsEnhancements, “Support”, “Allow”, “Add option”, improvements to existing features
Performance“Optimize”, “perf:”, “Reduce memory”, “Speed up”, “Improve performance”
Bug Fixes“Fix”, “fix:”, bug corrections, issue resolutions
InternalDependency updates, refactoring, CI changes, code cleanup, test improvements

Step 7: Write Release Notes

Follow the guidelines in releases-docs/guideline.md:

  1. Section Order: New Features → Improvements → Performance → Bug Fixes → Internal
  2. Only include sections that have content
  3. Format each item:
    • Start with a verb (Fix, Add, Support, Improve, Introduce)
    • Include PR numbers at the end: (#1234) or (#1234, #1235)
    • Use backticks for: commands, flags, file names, config properties
    • Use bold for major feature names

Step 8: Save the Release Notes

Save to releases-docs/releases/ folder:

  • If version provided: releases-docs/releases/v{VERSION}.md
  • If no version: releases-docs/releases/new-release.md

Important: Do NOT include the header metadata (title, tag, draft, etc.) - only the release content starting from the sections.

Example Output Format

 1### New Features
 2
 3- New `bit validate` command to run a complete `test`, `lint`, `compile` and `typecheck` for a project (#10022)
 4- **Bit Scripts** for simple shell commands or function execution for components (#10028)
 5
 6### Improvements
 7
 8- `bit recover` command now supports component and glob patterns (#10033)
 9- Improve error messages in CLI (#10027, #9983)
10
11### Performance
12
13- Don't read and parse the lockfile multiple times for calculating deps graph (#10019)
14
15### Bug Fixes
16
17- Fix an issue where test duration had incorrect format (#9940)
18- Fix an issue where `bit new` wasn't resolving a remote env (#9981)
19
20### Internal
21
22- Update dependencies (#10018, #10015, #10006)
23- Modernize some legacy code (#10024, #10014)

Output Files Summary

FileLocationPurpose
raw-commits.mdreleases-docs/temp-files/Raw commit data for review
filtered-commits.mdreleases-docs/temp-files/Filtered/kept commits for review
v{VERSION}.md or new-release.mdreleases-docs/releases/Final release notes

Reference Files

  • Guidelines: releases-docs/guideline.md - Detailed formatting and style guidelines
  • Examples: releases-docs/releases/ - Previous release notes for reference patterns

Helper Scripts (Optional)

The releases-docs/scripts/ directory contains shell scripts for manual use:

  • get-release-commits.sh [FROM_COMMIT] [TO_TAG] - Fetches commits between releases
  • filter-commits.sh - Filters out uninteresting commits (pipe input to it)

These scripts are provided for manual/CLI use. When using this skill, Claude uses the gh API commands directly as they work from any directory without needing the local git repository.

Tips

  1. Group related PRs - Multiple PRs for the same feature should be one line item
  2. Be concise - Users scan release notes; keep items short and clear
  3. Focus on user impact - Describe what changed for the user, not implementation details
  4. Check for typos - Common in commit messages; fix them in release notes
  5. Verify PR numbers - Ensure all referenced PRs exist and are correct

What Users Are Saying

Real feedback from the community

Environment Matrix

Dependencies

GitHub CLI (gh) - latest version
Git - any recent version
Bash shell environment

Framework Support

GitHub API ✓ (recommended) Git repositories ✓

Context Window

Token Usage ~5K-15K tokens depending on commit history size

Security & Privacy

Information

Author
teambit
Updated
2026-01-30
Category
automation-tools