agentsclimarketplace

Semantic versioning

Skill jzills/claude-marketplace/plugins/semantic-versioning/skills/semantic-versioning

A Claude Code plugin marketplace with skills for git workflows, code quality, safety, and more.

Install
npx -y skills add jzills/claude-marketplace --skill semantic-versioning

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when you need to determine the next semantic version number for a release. Invoke as a sub-skill before creating a release branch, publishing a package, generating a changelog, or tagging a release. Also triggers on: "what version should I release?", "determine the version", "figure out the semver", "what's the next version?", "bump the version", "version bump", "release version".

SKILL.md

2.8 KB, as published. Nobody here has run it

Semantic Versioning

Overview

Determines the next semantic version number by inspecting git history and project conventions. Reports the computed version in conversation so calling skills can use it in branch names, tags, and release artifacts.

Workflow

Step 1 — Detect current version

Follow the priority order in references/version-detection.md:

  1. Parse git tag for the highest SemVer-shaped tag (vX.Y.Z or X.Y.Z)
  2. If no tags, inspect remote branches matching release/* patterns
  3. If neither, assume 0.0.0

Step 2 — Gather evidence for bump type

  • Primary: scan git log <current-version>..HEAD for conventional commit types
  • Fallback: if no conventional commits found, read CHANGELOG.md Unreleased section

Step 3 — Classify bump type

Apply the rules from references/bump-inference.md:

EvidenceBump
BREAKING CHANGE: footer or ! suffix (e.g. feat!:)major
Any feat: commitminor
Only fix:, perf:, refactor:, docs:, chore:, style:, test:patch
No conventional commits → CHANGELOG ### Removedmajor
No conventional commits → CHANGELOG ### Added or ### Changedminor
No conventional commits → CHANGELOG only ### Fixedpatch

Always use the highest bump found across all evidence. If both sources are inconclusive, ask: "I couldn't determine the bump type automatically. Is this a major, minor, or patch release?"

Step 4 — Compute next version

Apply the bump to the current version per SemVer 2.0.0 rules:

  • major: increment X, reset Y and Z to 0 → 2.3.1 becomes 3.0.0
  • minor: increment Y, reset Z to 0 → 2.3.1 becomes 2.4.0
  • patch: increment Z only → 2.3.1 becomes 2.3.2

Step 5 — Report

Announce the result with reasoning:

"The next version is v2.1.0 (minor bump — 3 feat: commits detected since v2.0.1)"

The reported version is then available in the conversation for the calling skill to use.

Using This Skill From Other Skills

When a skill needs the next version number before proceeding (e.g., naming a release branch or generating a tag), add this to the calling skill's SKILL.md:

**REQUIRED SUB-SKILL:** Invoke `semantic-versioning` to determine the release version.
The reported version (e.g. "v2.1.0") will be available in the conversation for use
in branch names, tags, and release artifacts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.