release-skills
⚠Review·Scanned 2/19/2026
This skill automates release workflows: detecting version files, bumping versions, generating changelogs, tagging, and pushing releases. It includes scripts and shell instructions that run git commands (git commit, git tag, git push), fetch/install via npx (https://github.com/.../release-skills), and write into agent skill directories (.claude/skills, ~/.cursor/skills).
from clawhub.ai·vc5dfcb3·52.0 KB·0 installs
Scanned from 0.1.0 at c5dfcb3 · Transparency log ↗
$ vett add clawhub.ai/wpank/release-skillsReview findings below
Release Skills
Universal release workflow with auto-detection, multi-language changelogs, semantic versioning, and git tagging. Supports Node.js, Python, Rust, Claude Plugin, and generic projects.
What's Inside
- Auto-detection of project type and version files
- Change analysis with conventional commit categorization
- Semantic version determination (major/minor/patch)
- Multi-language changelog generation (English, Chinese, Japanese, and more)
- Monorepo module grouping
- User confirmation flow before pushing
- Git tagging and release creation
- Configuration via
.releaserc.yml - Scripts for release preparation, notes generation, and roadmap changelogs
When to Use
- User wants to create a release or bump a version
- Updating changelogs before a deploy
- Preparing for deployment with proper tagging
- Triggered by: "release", "new version", "bump version", "update version", "push", "create release", "prepare release", "tag version"
Installation
npx add https://github.com/wpank/ai/tree/main/skills/tools/release-skills
Manual Installation
Cursor (per-project)
From your project root:
mkdir -p .cursor/skills
cp -r ~/.ai-skills/skills/tools/release-skills .cursor/skills/release-skills
Cursor (global)
mkdir -p ~/.cursor/skills
cp -r ~/.ai-skills/skills/tools/release-skills ~/.cursor/skills/release-skills
Claude Code (per-project)
From your project root:
mkdir -p .claude/skills
cp -r ~/.ai-skills/skills/tools/release-skills .claude/skills/release-skills
Claude Code (global)
mkdir -p ~/.claude/skills
cp -r ~/.ai-skills/skills/tools/release-skills ~/.claude/skills/release-skills
Part of the Tools skill category.