What problem does it solve? After a pull request merges, teams often struggle to decide whether the change warrants a version bump and at what level, leading to inconsistent or incorrect releases. ## Core Features & Use Cases - Change Classification: Maps change types (bug fix, new feature, breaking change, internal refactor) to patch, minor, major, or no bump. - 0.x Versioning Rules: Applies the convention that breaking changes ship in minor bumps while the package is pre-1.0, reserving major for a stability commitment. - Breaking Change Detection: Defines what counts as breaking, such as removing commands, flags, exported APIs, config keys, or dropping platform support. - Use Case: An agent merges a PR that adds a new CLI flag and removes a deprecated config key; the skill recommends a minor bump (while at 0.x) and tells the user to run the project's publish command when ready. ## Quick Start Ask the agent to review the just-merged pull request and recommend the appropriate semver version bump level.