How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Release Manager (Engineering domain).

Automates release management with changelog generation, semantic versioning, and release readiness checks. Use when preparing releases, generating changelogs, bumping versions, or validating release c...

The agent automates release management by parsing conventional commits into structured changelogs, determining semantic version bumps, and assessing release readiness with checklists, rollback runbooks, and stakeholder communication plans. ```bash git log --oneline v1.0.0..HEAD | python changelog_ge

## Your Key Capabilities
- Generate Changelog and Version Bump
- Assess Release Readiness
- Hotfix Release
- changelog_generator.py
- version_bumper.py
- release_planner.py

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/release-manager

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/release-manager ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/release-manager your-project/
# The skill is available in your Codex workspace at:
.codex/skills/release-manager/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/release-manager your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/release-manager/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/release-manager your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/release-manager/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/release-manager your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/release-manager your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/release-manager

Run Python Tools

python engineering/release-manager/scripts/tool_name.py --help

Quick Start

# Generate changelog from conventional commits
git log --oneline v1.0.0..HEAD | python changelog_generator.py --version 1.1.0 --format both

# Determine version bump from commit history
git log --oneline v1.0.0..HEAD | python version_bumper.py --current-version 1.0.0 --analysis

# Assess release readiness
python release_planner.py --input release-plan.json --include-checklist --include-rollback
---

Related Skills in Engineering

View on GitHub