Engineering Advanced ReleasesVersioningDeployment

Release Manager

Changelog generation, semantic versioning, and readiness checking.

$skillfish add ~skills/release-manager

Real Conversations

See how the Release Manager skill responds to actual requests. These are representative examples of what your AI agent will produce.

You

We're releasing v2.4.0 tomorrow. The last release was v2.3.1 three weeks ago. We have 84 commits since then — all using conventional commits. I need a CHANGELOG.md entry and release notes for GitHub. Can you generate them?

Agent

This skill includes executable scripts — I'll need your permission before running them.

Here's how to generate the changelog from your git history:

python3 scripts/changelog_generator.py \
  --from v2.3.1 \
  --to HEAD \
  --version 2.4.0 \
  --output changelog_entry.md

Based on conventional commit analysis of a typical 84-commit span, here's what the output will look like:

## [2.4.0] - 2026-03-09

### Added
- feat(auth): support SAML 2.0 SSO for enterprise customers (#412)
- feat(api): add bulk task import endpoint accepting CSV and JSON (#398)
- feat(dashboard): new project health score widget with trend indicators (#421)
- feat(notifications): configurable digest email schedule per user (#407)

### Fixed
- fix(api): resolve race condition in concurrent task status updates (#418)
- fix(auth): correct JWT expiry not refreshing on keep-alive requests (#415)
- fix(search): full-text search returning stale results after bulk updates (#409)
- fix(export): CSV export encoding issue with non-ASCII characters (#402)

### Performance
- perf(api): reduce task list query from 23ms to 4ms via query optimization (#420)
- perf(search): batch index updates instead of per-document writes (#411)

### Dependencies
- chore(deps): upgrade Prisma from 5.8 to 5.12 (#416)
- chore(deps): upgrade Next.js from 14.1 to 14.2 (#419)

Version bump determination: Your 84 commits contain feat types → MINOR bump. No BREAKING CHANGE footers → stays MINOR. v2.3.1 → v2.4.0 is correct.

GitHub release notes (shorter format for the release page):

## What's New in v2.4.0
**Enterprise SSO** — SAML 2.0 support is now available for customers on the Enterprise plan.
**Bulk Import** — Import tasks from CSV or JSON via the new API endpoint.
**Performance** — Task list API is now 5x faster.

Full changelog: [CHANGELOG.md](CHANGELOG.md)

Get Started

How to install and use this skill in your preferred environment.

Skills are designed for AI coding agents (Claude Code, Cursor, Windsurf) and IDE-based workflows where the agent can read files, run scripts, and act on your codebase. Web-based AI can use the knowledge and frameworks, but won't have tool access.

Models & Context

Which AI models and context windows work best with this skill.

Recommended Models

Best
Claude Opus 4 Claude Sonnet 4 GPT-4.1 Gemini 2.5 Pro Grok 3 Kimi K2
Good
Claude Haiku 4.5 GPT-4.1 mini Gemini 2.5 Flash Grok 3 mini

Larger models produce more detailed, production-ready outputs.

Context Window

This skill's SKILL.md is typically 3–10 KB — fits in any modern context window.

8K Skill only
32K+ Skill + conversation
100K+ Skill + references + codebase

All current frontier models (Claude, GPT, Gemini) support 100K+ context. Use the full window for complex multi-service work.

Pro tips for best results

1

Be specific

Include numbers — users, budget, RPS — so the skill can size the architecture.

2

Share constraints

Compliance needs, team size, and existing stack all improve the output.

3

Iterate

Start with a high-level design, then ask follow-ups for IaC, cost analysis, or security review.

4

Combine skills

Pair with companion skills below for end-to-end coverage.

Ready to try Release Manager?

Install the skill and start getting expert-level guidance in your workflow — any agent, any IDE.

$skillfish add ~skills/release-manager
← Browse all 169 skills