github-release-management

Automates GitHub release orchestration including versioning, testing, deployment, and rollback management.

Updated May 8, 2026
One-click install
npx skills add https://github.com/FrekiManagarm/d-chambaud --skill github-release-management-frekimanagarm
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: github-release-management
Source: https://github.com/FrekiManagarm/d-chambaud/tree/main/.agents/skills/github-release-management
Command: npx skills add https://github.com/FrekiManagarm/d-chambaud --skill github-release-management-frekimanagarm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Coordinating software releases across versioning, changelog generation, testing, multi-platform builds, and deployments is error-prone and time-consuming when done manually, especially for monorepos and multi-repository projects. ## Core Features & Use Cases - Release Planning & Versioning: Semantic version analysis, breaking change detection from commits, and multi-package version coordination. - Automated Validation & Deployment: Multi-stage test orchestration, cross-platform builds, progressive staged rollouts, and automated rollback on failure. - Changelog & Communication: Categorized changelog generation from merged PRs and commits, migration guides, and stakeholder notifications. - Use Case: A team releasing v2.0.0 across npm, Docker, and GitHub can run a single pipeline that generates the changelog, runs validation suites, builds artifacts for linux/macos/windows, deploys with staged rollout, and auto-rolls back if error rates spike. ## Quick Start Ask the AI to create a GitHub release for version 2.0.0 with generated release notes, full test validation, and deployment to npm and Docker.

Frequently Asked Questions about github-release-management

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

FAQPage Schema
How do I automate a GitHub release with generated release notes?▼

Use gh release create with the --generate-notes flag, or generate a categorized changelog from merged PRs and commits via the GitHub compare API. The skill orchestrates this with version bumps, validation, and artifact uploads in one pipeline.

How to coordinate releases across multiple repositories?▼

Use the multi-release command with per-repo versions, compatibility checks, and atomic release flags. It dispatches release events to each repository and can roll back all repos if any single release fails.

What tools are required for GitHub release automation?▼

The workflow requires the GitHub CLI (gh), git, Node.js 20 or later, and npm or yarn. Claude Flow swarm coordination and MCP GitHub integration are optional enhancements for multi-agent orchestration.

Can I set up automatic rollback for failed deployments?▼

Yes, configure auto-rollback triggers based on error rate, latency, availability, or failed health checks with a grace period. The deployment monitors metrics and reverts to the previous version when thresholds are breached.

How do I handle emergency hotfix releases?▼

Create a hotfix branch from the last stable tag, cherry-pick the fix commits, run critical tests only, and publish with a fast-track flag. The workflow bypasses non-security checks and notifies stakeholders automatically.