What problem does it solve? Coordinating a software release involves many error-prone manual steps: choosing the right SemVer bump, running the full test suite, syncing version numbers across manifests, updating the changelog, and pushing commits and tags. This Skill standardizes that entire ceremony into a repeatable, verifiable workflow. ## Core Features & Use Cases - SemVer Version Bumping: Determines the bump tier (MINOR by default, resetting PATCH to 0) and synchronizes the version across package.json and related manifests via npm run sync. - Mandatory Pre-Release Verification: Runs the local CI/CD test runner and cross-references recent file changes against the test inventory to confirm all affected suites pass before releasing. - Changelog & Atomic Commit: Prepends a verified changelog entry, then creates a single grouped release commit and pushes the branch and tags to origin. - Use Case: When finishing a sprint, invoke this Skill to bump the project from 2.1.4 to 2.2.0, verify all tests pass, update the changelog, and push the release in one guided flow. ## Quick Start Run the release-management skill to bump the minor version, verify all tests pass, update the changelog, and push the release commit to origin.