What problem does it solve? Manually bumping version numbers, moving changelog entries, and creating git tags is repetitive and error-prone. This Skill automates the entire release workflow in one command, ensuring VERSION files, CHANGELOG.md, and git tags stay consistent. ## Core Features & Use Cases - Semver Bumping: Reads the current version from a VERSION file and applies patch, minor, or major increments according to semantic versioning rules. - Changelog Generation: Moves entries from CHANGELOG.unreleased.md into CHANGELOG.md under a dated version header, then resets the unreleased file. - Git Tagging: Commits the version bump and creates an annotated release tag (e.g., v0.2.0) ready to push. - Use Case: After merging several features, run the release command with "minor" to go from 0.1.0 to 0.2.0, automatically producing a dated changelog section and a git tag. ## Quick Start Ask the agent to release a new minor version of the project, and it will bump the VERSION file, update the changelog, and create the git commit and tag.