release-engineering

release-engineering is a skill for Claude Code from the-open-agent/oss-skills. It costs 108 tokens per session (2,366 once invoked), scanned A, original, Apache-2.0.

A set of practices for preparing and publishing software versions with correct version numbers, change logs, tags, and release notes.

In plain words
What is it for?
It helps release packages to registries such as npm or PyPI, choose major, minor, or patch version changes, automate publishing, and handle bad releases.
Why use it?
It prevents users from receiving breaking changes under a version number that suggests their existing code will still work.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the oss-skills plugin — 18 skills shipped together

Good fit It helps release packages to registries such as npm or PyPI, choose major, minor, or patch version changes, automate publishing, and handle bad releases.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/the-open-agent/oss-skills/release-engineering
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 the-open-agent/oss-skills --skill release-engineering
Clone the repo
git clone --depth 1 https://github.com/the-open-agent/oss-skills

Made for: Claude Code.

Or install oss-skills, the plugin that ships this one along with the rest of its 18 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-engineering

README.md
[![agentmods](https://agentmods.dev/badge/skills/the-open-agent/oss-skills/release-engineering.svg)](https://agentmods.dev/skills/the-open-agent/oss-skills/release-engineering)
Your own site
<a href="https://agentmods.dev/skills/the-open-agent/oss-skills/release-engineering"><img src="https://agentmods.dev/badge/skills/the-open-agent/oss-skills/release-engineering.svg" alt="Measured on agentmods" height="20"></a>
Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,366 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 original No closer match found 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.00108 $0.02366
Opus 5 $0.00054 $0.01183
Sonnet 5 $0.00022 $0.00473
Haiku 4.5 $0.00011 $0.00237

Measured 7d ago against content hash f43313269cb8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

release-engineering 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 7d 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.

skills/release-engineering/SKILL.md · 208 lines

How it starts

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

Release Engineering

A release is a promise. Semver is the notation for that promise, and users treat it literally — a breaking change in a patch release breaks builds at 3 a.m. for people who did nothing wrong.

Semver, decided correctly

MAJOR.MINOR.PATCH — increment MAJOR for incompatible changes, MINOR for backward-compatible additions, PATCH for backward-compatible fixes.

The judgment calls, resolved:

Change Bump Note
Add an optional parameter minor
Add a required parameter major
Add a new export minor
Remove or rename any export major Deprecate first (api-design)
Change a default value major Behavior changes silently — the worst kind
Fix a bug users may depend on major in practice Hyrum's Law; judge by blast radius
Add a new error type minor Unless callers must handle it exhaustively
Change an error message patch Unless documented as stable
Change an error type major
Tighten input validation major Previously-working input now fails
Loosen validation minor
Raise minimum runtime version major Node 18→20, Python 3.9→3.10
Add a required peer dependency major
Bump a dependency's major major if its types are in your public API, else minor
Performance improvement patch/minor major if a complexity guarantee changes
Docs, tests, CI none No release needed
Change output ordering major if previously stable Someone parses it

0.x is not an exemption from thinking. Convention: 0.MINOR.PATCH where minor carries breaking changes. But once real users exist, communicate breaks regardless of what the version number technically permits.

1.0 means "the API is stable and I will honor semver." Ship it once that is true. Sitting at 0.x for years while enterprises depend on you is worse than an honest 1.0 — 0.x is read by procurement as "not production ready", and by dependency tooling as "pin exactly".

Read the full file on GitHub · 208 lines

Files

What ships with it

1 file 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. 7d ago First seen · 208 lines · 108 tokens per session scan A f43313269cb8

Subscribe to this mod's changes

release-engineering is a skill published in the GitHub repository the-open-agent/oss-skills (5 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 108 tokens to every session and 2,366 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

github-release-management

Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.

amangit1314/repo-rag · 27 tokens

github-release-management

Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.

ruvnet/ruflo · 27 tokens

land-and-deploy

Land and deploy workflow. Merges the PR, waits for CI and deploy, verifies production health via canary checks. Takes over after /ship creates the PR. Use when: "merge", "land", "deploy", "merge and verify", "land it", "ship it to production".

CarbeneAI/Forge · 67 tokens

ship

Ship a change with Baron — open a draft PR, move the issue to inreview, trigger its CI pipeline, and notify the team, as ONE deterministic single-pane workflow across scm + issues + ci + notify. Use when the user says "ship it", "ship this change", or asks to PR + run CI + notify together.

loncadev/baron · 70 tokens

deploy-pipeline-runbook

Use when a release spans multiple systems or vendors, order of operations matters with rollback planned up front, or a failed step in one system could corrupt state in a downstream system.

yeaight7/agent-powerups · 41 tokens

github-operations

Class-level workflow for GitHub repository, issue, pull request, CI, release, authentication, and remote/credential recovery tasks via gh and git. Use when asked to manage GitHub issues/PRs/runs/repos, inspect CI, call gh api, fix broken gh login, recover HTTPS/SSH credential failures, or repair git remotes.

davidtoby/agent-skills · 74 tokens