What problem does it solve? Releasing git-manager involves a fragile multi-step pipeline — version bumps, changelog generation, tag pushes, signed builds, and a draft release that feeds an in-app auto-updater — with no CI test gate to catch mistakes. This Skill walks you through each checkpoint so a broken build never reaches real users. ## Core Features & Use Cases - Version bump guidance: Decide patch/minor/major by inspecting merged PRs since the last tag via the GitHub API. - Release execution: Run pnpm release (cut-release.sh) with pre-flight checks (typecheck, lint, tests, cargo fmt/clippy), choosing between CI builds and faster --local-build signing. - Draft review and publish: Verify changelog, assets, and latest.json before publishing the draft that triggers the auto-updater. - Use Case: You want to ship v1.2.0 — the Skill confirms the bump type, runs the release script, watches the build, and walks you through reviewing and publishing the draft safely. ## Quick Start Ask the assistant to prepare and publish a new git-manager release, for example by saying "let's ship v1.2.0 as a minor release with a local build".