release-changelog-harness

release-changelog-harness is a skill for Claude Code from Arenukvern/skill_steward. It costs 84 tokens per session (2,499 once invoked), scanned A, a copy of release-changelog-harness, MIT.

A guide for choosing release, versioning, changelog, and binary-distribution tools for different programming ecosystems. A changelog records what changed in each version, while a monorepo holds multiple packages in one repository.

In plain words
What is it for?
It is for release automation, install scripts, version bumps, CHANGELOG files, GitHub Release archives, and shipping command-line tools or agent packages.
Why use it?
It prevents teams from forcing one release workflow onto JavaScript, Dart, Rust, Go, or executable projects where different tools fit better.

Skill for Claude Code

Written for Claude Code: paths in frontmatter. Also seen: mentions AGENTS.md.

Part of the skill-steward plugin — 15 skills shipped together

Good fit It is for release automation, install scripts, version bumps, CHANGELOG files, GitHub Release archives, and shipping command-line tools or agent packages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arenukvern/skill_steward/release-changelog-harness
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Arenukvern/skill_steward --skill release-changelog-harness
Clone the repo
git clone --depth 1 https://github.com/Arenukvern/skill_steward

Made for: Claude Code.

Or install skill-steward, the plugin that ships this one along with the rest of its 15 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for release-changelog-harness

README.md
[![agentmods](https://agentmods.dev/badge/skills/arenukvern/skill_steward/release-changelog-harness/github.svg)](https://agentmods.dev/skills/arenukvern/skill_steward/release-changelog-harness)
Your own site
<a href="https://agentmods.dev/skills/arenukvern/skill_steward/release-changelog-harness"><img src="https://agentmods.dev/badge/skills/arenukvern/skill_steward/release-changelog-harness/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for release-changelog-harness

Your own site · 80×15
<a href="https://agentmods.dev/skills/arenukvern/skill_steward/release-changelog-harness"><img src="https://agentmods.dev/badge/skills/arenukvern/skill_steward/release-changelog-harness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,499 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00084 $0.02499
Opus 5 $0.00042 $0.01249
Sonnet 5 $0.00017 $0.00500
Haiku 4.5 $0.00008 $0.00250

Measured 12d ago against content hash 8c654537fb45, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

release-changelog-harness scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to release-changelog-harness — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/release-changelog-harness/SKILL.md · 198 lines

How it starts

The opening of the file, as written. The whole thing — 198 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Release & changelog harness

Make releases understandable: every version bump has structured intent that agents and humans can read in git—not only in a maintainer’s head or a GitHub Releases textarea.

This skill is meta harness culture (which tool, which gates, which docs). It is not a full tutorial for every package manager.

Mixture of experts — critique your idea

Expert lens Verdict on “use JS Changesets everywhere”
JS monorepo maintainer Strong default: .changeset/*.md + changeset version beats hand-editing five package.json files.
Dart / Flutter publisher Weak fit as-is: pub uses tags + CHANGELOG.md; monorepos often use Melos version / changelog, not npm Changesets.
Rust / Go shipper Use release-plz, cargo-release, or git-cliff—forcing Changesets adds alien workflow.
Agent operator Wins when notes live as small structured files in git agents can read and PR—not prose-only in Slack.
Multi-repo steward (~/mcp) One legibility contract across siblings; different generators per ecosystem is fine.
Skill Steward charter Teach when + gate + doc placement; link to upstream docs; do not paste 200-line configs into SKILL.md.

Improved framing (use this):

Adopt the release legibility contract first; pick the ecosystem-native generator second (Changesets is one excellent generator for JS workspaces, not the universal hammer).

See mixture-of-experts.md for extended debate and anti-patterns.

Release legibility contract (normative)

Before picking a tool, agree the repo obeys:

  1. Notes in git — Changelog or changeset files are versioned; not release-notes-only in a web UI.
  2. Structured contributor input — Contributors add intent in a fixed shape (e.g. .changeset/foo.md, conventional commit scope, or ADR note)—not “bump version when you remember.”
  3. Mechanical publish path — One documented command sequence in DX_FAQ; CI is the source of truth for “can ship.”
  4. Agent-readable output — Post-release, CHANGELOG.md (or per-package changelogs) reflects what shipped; agents can answer “what changed in vX?”
  5. Why is recorded — Non-obvious toolchain choice → short ADR or DESIGN_FAQ Q&A.
  6. Install trust matches release truth — The latest GitHub Release, release assets, checksums, package versions, and install docs must agree; stale pinned install examples are release drift.

Read the full file on GitHub · 198 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 198 lines · 84 tokens per session scan A 8c654537fb45

Subscribe to this mod's changes

release-changelog-harness is a skill published in the GitHub repository Arenukvern/skill_steward (11 stars, last pushed 27d ago), licensed MIT. It adds 84 tokens to every session and 2,499 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to release-changelog-harness, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

bump-version

Automate version bumping following semantic versioning and changelog management. Use when the user wants to bump a version, create a release, update the changelog, or tag a new version in a project using semver conventions and Keep a Changelog format.

jim60105/copilot-prompt · 56 tokens

clawhub-production-release

Run and verify ClawHub production deploys and stable ClawHub CLI npm releases. Use when deploying backend or frontend changes to clawhub.ai, dispatching the Deploy workflow, publishing a stable CLI tag, checking release prerequisites, or proving the exact production SHA and workflow outcome.

openclaw/clawhub · 62 tokens

devops/changelog-generation

A method for creating a CHANGELOG, a document that records what changed in each software release. It reads Git commit history and release-pipeline reports, then groups changes using common commit and changelog conventions.

echoVic/boss-skill · 36 tokens

app-release

Use when the user asks to release a new version, ship a build, or publish a Skill Zoo release. Also use when a tag push results in Homebrew 404 errors or missing artifact failures.

luochang212/skill-zoo · 43 tokens

github-release-notes-writer

Draft or update user-focused GitHub Release Notes from verified tags, commits, pull requests, existing releases, and supplied changelog baselines. Use when preparing prerelease or stable release notes, turning GitHub's generated What's Changed list into a curated narrative, documenting upgrades or breaking changes, or…

flc1125/skills · 84 tokens

github-release-pr-writer

Draft or update GitHub release pull request descriptions from verified tags, commits, merged pull requests, and the release diff. Use when a PR prepares a version, aligns release metadata, promotes a prerelease, or needs a reviewer-focused release summary, exact change inventory, breaking-change section, or migration…

flc1125/skills · 80 tokens