What problem does it solve?
This Skill automates the entire software release process, eliminating manual errors and saving significant time. It ensures consistent, high-quality deployments across multiple platforms, from version bumping to publishing on GitHub.
Core Features & Use Cases
- End-to-End Automation: Handles version bumping, changelog generation, and multi-platform builds (Windows, macOS, Linux).
- GitHub Release Integration: Automatically creates GitHub releases with attached installers and release notes.
- Pre-Release Validation: Ensures code quality, test coverage, and environment readiness before deployment.
- Use Case: When you're ready to ship a new feature, Claude orchestrates the entire release: bumping the version, generating a changelog, building Windows, macOS, and Linux installers, and publishing them to GitHub, all with a single command.
Quick Start
Create a patch release (e.g., for a bug fix)
pnpm release patch
Create a minor release (e.g., for new features)
pnpm release minor
Perform a dry run to see changes without publishing
pnpm release minor --dry-run