skills$openclaw/changelog-gen
lxgicstudios2.9k

by lxgicstudios

changelog-gen – OpenClaw Skill

changelog-gen is an OpenClaw Skills integration for coding workflows. Generate changelogs from git history. Use when you need release notes fast.

2.9k stars4.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namechangelog-gen
descriptionGenerate changelogs from git history. Use when you need release notes fast. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/changelog-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/changelog-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains changelog-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
996 B
index.ts
1.8 KB
_meta.json
290 B
package-lock.json
31.9 KB
package.json
949 B
README.md
1.4 KB
SKILL.md
2.3 KB
tsconfig.json
246 B
SKILL.md

name: changelog-gen description: Generate changelogs from git history. Use when you need release notes fast.

Changelog Generator

Writing changelogs by hand is tedious. This tool reads your git history between two refs and generates a properly categorized changelog entry. No more copy-pasting commit messages.

One command. Zero config. Just works.

Quick Start

npx ai-changelog --from v1.0.0 --to v2.0.0

What It Does

  • Reads git log between any two refs (tags, branches, commits)
  • Groups commits into Added, Changed, Fixed, Removed
  • Cleans up messy commit messages into readable entries
  • Outputs markdown ready for your CHANGELOG.md

Usage Examples

# Between two tags
npx ai-changelog --from v1.0.0 --to v2.0.0

# From a tag to HEAD
npx ai-changelog --from v1.0.0 --to HEAD

# Write directly to file
npx ai-changelog --from v1.0.0 --to v2.0.0 -o CHANGELOG.md

# Specific commit range
npx ai-changelog --from abc123 --to def456

Best Practices

  • Tag your releases - makes generating changelogs way easier
  • Write decent commits - garbage in, garbage out
  • Review the output - AI might miscategorize some changes
  • Run before release - make it part of your release checklist

When to Use This

  • Preparing a release and need changelog entries
  • You forgot to maintain the changelog and need to catch up
  • Want consistent changelog formatting across releases
  • Generating release notes for GitHub releases

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.

npx ai-changelog --help

How It Works

Runs git log between your specified refs, collects all commit messages, and sends them to GPT-4o-mini. The AI parses the commits, understands what each change does, and formats them into proper Keep a Changelog style with appropriate categories.

License

MIT. Free forever. Use it however you want.

README.md

ai-changelog

npm version npm downloads License: MIT

AI-powered changelog generator from git history. Creates clean, categorized release notes.

Generates a clean, categorized changelog from your git history. You give it two refs (tags, branches, commits) and it reads the log between them, then uses OpenAI to turn that mess of commit messages into a proper CHANGELOG entry.

Install

npm install -g ai-changelog

Setup

You'll need an OpenAI API key:

export OPENAI_API_KEY=sk-your-key-here

Usage

# Between two tags
npx ai-changelog --from v1.0.0 --to v2.0.0

# From a tag to HEAD
npx ai-changelog --from v1.0.0 --to HEAD

# Write directly to a file
npx ai-changelog --from v1.0.0 --to v2.0.0 -o CHANGELOG.md

It'll group your commits into Added, Changed, Fixed, Removed. No more hand-writing changelogs.

What it does

  1. Reads git log between the two refs you give it
  2. Sends the commit list to OpenAI
  3. Gets back a nicely formatted changelog entry
  4. Prints it or writes it to a file

That's it. Nothing fancy, just saves you 20 minutes every release.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-changelog --help ```

FAQ

How do I install changelog-gen?

Run openclaw add @lxgicstudios/changelog-gen in your terminal. This installs changelog-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/changelog-gen. Review commits and README documentation before installing.