release

release is a skill for Claude Code, Codex from anthony-chaudhary/dos-kernel. It costs 59 tokens per session (12,479 once invoked), scanned A, original, MIT.

A release procedure for the DOS kernel, the core package that provides its agent checks and tools. It updates the version, prepares release notes, commits and tags the code, pushes it, and creates a GitHub release.

In plain words
What is it for?
Use it to ship a new DOS kernel version, whether it fixes bugs, adds features, or includes breaking changes.
Why use it?
It gathers the versioning and publishing steps into one repeatable process. The release is checked with the kernel tests and a truth check before the package publishing pipeline proceeds.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/anthony-chaudhary/dos-kernel/release
Any agent
npx skills add anthony-chaudhary/dos-kernel --skill release
Clone the repo
git clone --depth 1 https://github.com/anthony-chaudhary/dos-kernel

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/anthony-chaudhary/dos-kernel/release.svg)](https://agentmods.dev/skills/anthony-chaudhary/dos-kernel/release)
Your own site
<a href="https://agentmods.dev/skills/anthony-chaudhary/dos-kernel/release"><img src="https://agentmods.dev/badge/skills/anthony-chaudhary/dos-kernel/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 12,479 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00059 $0.12479
Opus 5 $0.00030 $0.06240
Sonnet 5 $0.00012 $0.02496
Haiku 4.5 $0.00006 $0.01248

Measured 4d ago against content hash b8ca4d1af477, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

.claude/skills/release/SKILL.md · 851 lines

How it starts

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

Release — the DOS kernel

Semver: major.minor.patch. Patch = bug fix, minor = new feature, major = breaking.

DOS is a substrate, not an app. This skill is the DOS-context adaptation of the job release skill. It is deliberately thinner: DOS single-sources its version from pyproject.toml (one marker, not four), ships no release-asset zip archive, screenshots, versioned-install snapshot, plan-state regeneration, apply-loop gate, or fanout/dispatch manifest. The dist artifacts — one wheel per OS/arch, each embedding its native dos-hook fast-path binary at dos/_bin/ (docs/286), plus a pure-source sdist — are built by CI (publish.yml via scripts/build_wheels.py), never by this skill locally. The verification step is the kernel test suite + the truth syscall, not an apply pipeline. If you find yourself reaching for any of those job-only ceremonies, you're in the wrong repo's skill.

One exception — the plugin's native hook binaries. The Claude Code plugin (claude-plugin/) bundles the compiled dos-hook fast-path binaries (docs/125 GHF4), committed into claude-plugin/bin/ so a marketplace install (a git clone) is a direct install. They are NOT a release asset and NOT in the wheel — they live in the git tree. Step 5.5 rebuilds them so a release never ships a stale binary against changed Go source.

Trunk is master (there is no main branch in DOS). Every git push in this skill targets master. Master-direct is the deliberate branching model for now (a trunk+lane-branch PR cutover is planned, evidence-triggered — not a dev branch); this skill assumes it.

This repo is PUBLIC and the tag is a publish trigger (the 2026-06-10 cutover). Three consequences every release run must respect:

  1. A push IS publication. origin is the public anthony-chaudhary/dos-kernel. The machine-local pre-push hook (.git/hooks/pre-push) runs the leak scanner (scripts/leak_scan.py, a gitignored sync of the canonical ../dos-private/tools/leak_scan.py) and is fail-closed: a hit — or a missing scanner — refuses the push. On a refusal: scrub and amend, never --no-verify ("a leak is a refusal, not a warning"). Details in the runbook's Public-repo push gates section.
  2. Pushing the vX.Y.Z tag starts the PyPI publish pipeline. publish.yml fires on every v* tag: it builds the per-platform wheels + sdist, asserts tag == pyproject.toml version, refuses to upload any SHA without a green ci.yml run on it (the ci-green witness gate — it polls while CI finishes), then pauses at the protected pypi environment for the operator's approval before the OIDC Trusted-Publishing upload. So Step 6's tag push is also the publish request, and Step 7.4 is "surface/approve the pipeline," not "run twine."
  3. Release notes are public documents. docs/releases/vX.Y.Z.md ships to the world (and into the GH release body). No dev-machine absolute paths, hostnames, or personal identifiers; private-SUBJECT prose (operator process, fleet audits, launch mechanics) is born in dos-private, never here — the CLAUDE.md route-privacy-at-authoring-time rule, applied to the notes you draft in Step 3.

Read the full file on GitHub · 851 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. 4d ago First seen · 851 lines · 59 tokens per session scan A b8ca4d1af477

Subscribe to this mod's changes

release is a skill published in the GitHub repository anthony-chaudhary/dos-kernel (19 stars, last pushed 10d ago), licensed MIT. It adds 59 tokens to every session and 12,479 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

release

Use when writing a public-facing GitHub release announcement for a new version. Produces the curated short body users see on the releases page. Picks a shape that fits the release size (triplet for major, bullets for polish, single paragraph for hotfix). Separates the writer's surface from engineering's technical…

Alireza29675/teamctl · 89 tokens

open-pr

Use whenever the user wants to wrap up a feature branch and open a pull request. Syncs the current branch onto the remote default branch via rebase, halts on git conflicts for the human to resolve, auto-detects and runs the repo's linter/formatter, stages remaining changes, writes a Conventional Commits message…

felipearomani/claude-shipyard · 168 tokens

codew-release-qa-sweep

Use before claiming Codewhale release work is done: run the full gate sweep and list the manual QA targets.

Hmbown/CodeWhale · 31 tokens

agent-framework-py-release

Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…

microsoft/agent-framework · 103 tokens

takt

TAKT ワークフローエンジン。codex exec でサブエージェントを起動し、ワークフロー YAML(steps / initialstep)に従って マルチエージェントオーケストレーションを実行する。.

nrslib/takt · 63 tokens

helmor-release

Prepare Helmor releases by inspecting the current branch, drafting a concise user-facing Changesets entry first (bump + body — keep it as short as possible), creating any needed pending in-app release announcement under .announcements/, and then showing the user the result with a short menu of adjustments they can…

dohooo/helmor · 110 tokens