7.4k★by lxgicstudios
release-gen – OpenClaw Skill
release-gen is an OpenClaw Skills integration for coding workflows. Generate semantic version bumps and git tags from commit history. Use when preparing a release.
Skill Snapshot
| name | release-gen |
| description | Generate semantic version bumps and git tags from commit history. Use when preparing a release. OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/release-gen |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/release-gen |
| last updated | Feb 7, 2026 |
Maintainer

name: release-gen description: Generate semantic version bumps and git tags from commit history. Use when preparing a release.
Release Gen
Figuring out whether to bump major, minor, or patch is tedious. This tool analyzes your commits since the last tag and determines the right version bump. Then creates the tag and updates your changelog.
One command. Zero config. Just works.
Quick Start
npx ai-release
What It Does
- Analyzes commits since last tag to determine version bump
- Follows semantic versioning (major.minor.patch)
- Creates annotated git tags
- Generates changelog entries
- Supports conventional commits but works with any commit style
Usage Examples
# Analyze and suggest version bump
npx ai-release
# Create the release (tag + changelog)
npx ai-release --create
# Force a specific bump type
npx ai-release --bump major
# Preview without making changes
npx ai-release --dry-run
# Include pre-release tag
npx ai-release --prerelease beta
Best Practices
- Use conventional commits - feat:, fix:, BREAKING CHANGE: make analysis more accurate
- Always dry-run first - See what would happen before creating tags
- Review the changelog - AI groups things well but you might want to edit
- Tag on main only - Keep releases off feature branches
When to Use This
- Ready to ship a new version and need to figure out the version number
- Want to automate your release process
- Generating changelogs manually is eating your time
- Need consistent tagging across team members
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:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgic.dev
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable.
export OPENAI_API_KEY=sk-...
npx ai-release --help
How It Works
Reads git log since the last tag (or first commit if no tags). Classifies commits by impact: breaking changes trigger major bumps, new features trigger minor, fixes trigger patch. Creates an annotated tag and appends to your changelog file.
License
MIT. Free forever. Use it however you want.
ai-release
Automatic semantic versioning, release notes, and git tags. Reads your commits and figures out the rest.
Install
npm install -g ai-release
Usage
npx ai-release
# → minor bump: v1.2.0 → v1.3.0
# → Creates annotated tag with release notes
npx ai-release --dry-run
# → Preview the bump and notes without tagging
npx ai-release --no-tag
# → Generate notes without creating a git tag
Setup
export OPENAI_API_KEY=sk-...
License
MIT
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. Requires OPENAI_API_KEY environment variable. ```bash export OPENAI_API_KEY=sk-... npx ai-release --help ```
FAQ
How do I install release-gen?
Run openclaw add @lxgicstudios/release-gen in your terminal. This installs release-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/release-gen. Review commits and README documentation before installing.
