Release Manager

Parse conventional commits to generate changelogs and assess release readiness.

Updated Feb 27, 2026
One-click install
npx skills add https://github.com/amanhsn/flyerbuild --skill release-manager-amanhsn
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Release Manager
Source: https://github.com/amanhsn/flyerbuild/tree/main/.cursor/skills/release-manager
Command: npx skills add https://github.com/amanhsn/flyerbuild --skill release-manager-amanhsn

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) and assets (resource) components.

What problem does it solve?

This Skill streamlines the complex and error-prone process of software releases, automating tasks like changelog generation, version bumping, and release planning.

Core Features & Use Cases

  • Automated Changelog Generation: Parses git history to create structured changelogs.
  • Semantic Version Bumping: Intelligently determines version increments based on commit types.
  • Release Planning & Readiness: Assesses release readiness with checklists and identifies blockers.
  • Use Case: Integrate this Skill into your CI/CD pipeline to automatically generate a changelog entry and determine the next version number for every merge to your main branch.

Quick Start

Use the release manager skill to determine the next version bump based on commits since the last tag, assuming the current version is 1.2.3.

Frequently Asked Questions about Release Manager

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate changelog generation from conventional commits?

Automated changelog generation parses your git history to create structured changelogs based on conventional commit messages. It categorizes changes by reading commit types like features or fixes, producing a structured changelog entry for every merge to your main branch.

How does semantic version bumping work from git history?

Semantic version bumping intelligently determines version increments by analyzing conventional commit types since your last tag. It automatically applies major, minor, or patch bumps based on whether the commits introduce breaking changes, new features, or fixes.

Can I integrate release management into a CI/CD pipeline?

You can integrate this release management approach directly into your CI/CD pipeline. It automates software delivery by determining the next version number and generating changelog entries whenever code merges to the main branch.

What is release readiness assessment in DevOps?

Release readiness assessment evaluates whether your software is prepared for deployment by generating checklists and identifying blockers. It streamlines release planning by parsing conventional commits to ensure reliable software delivery.

Do I need conventional commits to automate versioning and changelogs?

Yes, conventional commits are required to automate versioning and changelogs. The automation relies on parsing structured commit messages to determine semantic version bumps and generate accurate, categorized changelog entries from your git history.

What is the best way to plan releases and identify blockers?

The best way to plan releases is by assessing release readiness with automated checklists and blocker identification. This approach uses parsed git history and conventional commits to streamline release planning and ensure efficient software delivery.