Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Release Version

ASecurity

Cut a new harness version. Evaluates the semantic-version bump from the conventional commits since the last v* tag, proposes it with reasoning, and asks you to confirm or override (forward-only). On confirmation it runs harness/release-version.sh, which stamps harness/VERSION (+ release date), runs propagate-harness.sh (propagate + full battery), then creates the local chore(release) commit and the annotated v<VERSION> tag. It STOPS there and prints the push commands; it never pushes or publi...

16 stars
0 votes
0 copies
0 views
Added 9/20/2026
documentationbashgitapi

Works with

claude codeapi

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add woditschka/agentic-coding-reference --skill release-version --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Release Version?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Release Version
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/woditschka-release-version/badge)](https://www.skillsdirectory.com/skills/woditschka-release-version)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: release-version
description: >-
  Cut a new harness version. Evaluates the semantic-version bump from the
  conventional commits since the last v* tag, proposes it with reasoning, and
  asks you to confirm or override (forward-only). On confirmation it runs
  harness/release-version.sh, which stamps harness/VERSION (+ release date),
  runs propagate-harness.sh (propagate + full battery), then creates the local
  chore(release) commit and the annotated v<VERSION> tag. It STOPS there and
  prints the push commands; it never pushes or publishes unasked. Run on a
  clean tree once the feature work is committed. Root-only (Claude Code).
compatibility:
  - claude-code
metadata:
  version: "2.0"
  author: team
---

# release-version

Cut one lockstep version for the whole plugin set: evaluate the bump (judgment,
below), then hand the mechanical rest to `harness/release-version.sh`. The
version stamps every `plugin.json` and the marketplace; its release date
(`harness/VERSION-DATE`) stamps every consumer's `CLAUDE.md`; the `v<VERSION>`
tag is the reproducible snapshot and rollback point
([the marketplace ADR](../../../docs/adr/2026-06-14-marketplace-plugin-channel.md)).

## Precondition

A **clean working tree** — the script refuses anything else, so the release
commit holds only the bump, its restamp, and any retired-paths append this
cycle produced. Commit the feature work first.

## Process

1. **Find the baseline.** The latest release tag:
   ```bash
   git tag --list 'v*' | sort -V | tail -1
   ```
   If none exists, survey from the commit that introduced `harness/VERSION`.

2. **Evaluate the bump** from the conventional commits since the baseline
   (`git log --pretty='%s' <baseline>..HEAD`):

   | Signal | Trigger |
   |---|---|
   | **breaking** | a removed or renamed skill / agent / channel, an API `spec_version` change, or a commit marked `!` / `BREAKING CHANGE` |
   | **feature** | a `feat:` commit — a new skill, agent, capability, or channel |
   | **fix** | only `fix:` / `docs:` / `refactor:` / `chore:` / `build:` |

   **The current major is 0, so the pre-1.0 rule applies:** breaking → bump
   MINOR; feature or fix → bump PATCH. The `1.0.0` jump is a deliberate
   stability decision the user makes; never propose it automatically. (At
   `>= 1.0.0`, standard semver: breaking → major, feature → minor, fix → patch.)

3. **Propose and confirm.** Present the computed version with the commits that
   drove it. Ask the user to confirm or override.

4. **Run the script** with the agreed version:
   ```bash
   harness/release-version.sh <new-version>
   ```
   It guards: MAJOR.MINOR.PATCH shape, strictly greater than `harness/VERSION`,
   clean tree. It records the cycle's runtime retirements
   (`harness/retired_paths.py update`), stamps `VERSION` + `VERSION-DATE` (and
   the adoption guide's team-pinning `ref` example), runs
   `propagate-harness.sh`, then creates the `chore(release)` commit and the
   annotated tag.
   `VERSION-DATE` is the deterministic release date `materialize` writes into
   consumer `CLAUDE.md` files; a wall-clock-at-materialize value would break
   the faithfulness battery. A battery failure reverts the stamp and its
   propagation wholesale (mechanics in the script), then aborts with nothing
   committed — fix at source, re-run the same version.

5. **Stop.** Relay the push commands the script prints — do not execute them
   ([push requires approval](../../../CLAUDE.md)). After the tag is pushed, a
   GitHub Release can be promoted from it later.

## Verdict format

```
## release-version: <date>

Baseline:  <last tag or "first release">
Bump:      <current> → <new> (<major|minor|patch>) — <one-line reason>
Propagate: propagate-harness PASS | FAIL (<step>)
Created:   commit chore(release): v<new>  +  tag v<new>  (local, unpushed)

Next (run manually): git push origin <branch> && git push origin v<new>
```

## What it does NOT do

- **Does not push or publish.** The script creates the commit and the local tag, then prints the push commands.
- **Does not bump to `1.0.0` on its own** — that is a deliberate stability decision.
- **Does not run on a dirty tree** — the script enforces this.
- **Does not re-stamp project-owned sample briefs** — those carry their `init`-time version by the decoupled-version rule; the restamp covers only the harness-owned runtime and the plugins.

Attribution

woditschkawoditschka
View sourceMore from woditschka →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Context Fundamentals

Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.

179001 votes

release-notes

Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.

1301 votes

docs-style-guide

Documentation style guide enforcer by @planetabhi. Applies and reviews the writing style guide when authoring or editing product documentation and tutorials. Use to check prose for voice, tense, word choice, inclusive language, formatting, code block, UI, Markdown, and number/date conventions.

11 votes

Caveman Help

Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, "caveman help", "what caveman commands", "how do I use caveman".

1023330 votes

How It Works

Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".

942310 votes
View all in documentation →