ship-release

ship-release is a skill for Claude Code, Codex from acartine/foolery. It costs 39 tokens per session (563 once invoked), scanned A, original, MIT.

A release checklist for the Foolery software project. It guides an agent through choosing a version change, checking the main code branch, reviewing changes, running quality checks, and publishing release files.

In plain words
What is it for?
Use it to prepare and publish patch, minor, or major Foolery releases, including a preview of what will ship and verified release artifacts.
Why use it?
It reduces the risk of releasing from the wrong branch, missing recent changes, or publishing code that has not passed its checks.

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/acartine/foolery/ship-release
Any agent
npx skills add acartine/foolery --skill ship-release
Clone the repo
git clone --depth 1 https://github.com/acartine/foolery

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 ship-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/acartine/foolery/ship-release.svg)](https://agentmods.dev/skills/acartine/foolery/ship-release)
Your own site
<a href="https://agentmods.dev/skills/acartine/foolery/ship-release"><img src="https://agentmods.dev/badge/skills/acartine/foolery/ship-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 563 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.00039 $0.00563
Opus 5 $0.00019 $0.00282
Sonnet 5 $0.00008 $0.00113
Haiku 4.5 $0.00004 $0.00056

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

Security

Grade A, and why

ship-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 5d 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.

.agents/skills/ship-release/SKILL.md · 73 lines

How it starts

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

/ship-release

Cut a new release of foolery.

Principles

  • Release from main, not from a feature branch or implementation worktree.
  • Keep the worktree clean before starting.
  • Sync main before previewing or running gates.
  • Do not use a PR workflow unless the user explicitly requests one.
  • Do not manually recover by pushing ad hoc commits, tags, or GitHub releases. If the release path fails, fix the release script or the failing gate first.

Steps

  1. Determine bump type — Ask whether this is a patch, minor, or major release unless already specified, for example /ship-release patch. Show the current version and what each bump would produce.

  2. Preflight and sync — Confirm the repo is on main, clean, and current:

    git status --short --branch
    git fetch origin main --tags
    git pull --ff-only
    

    If git pull --ff-only changes main, continue from the updated commit. If it fails because the branch diverged or the worktree is dirty, stop and report the exact remediation.

  3. Preview changes — After syncing, run:

    git log $(git describe --tags --abbrev=0)..HEAD --oneline
    

    Present a brief summary so the user can confirm what is shipping.

  4. Run quality gates — Execute in parallel:

    bun run lint
    bunx tsc --noEmit
    bun run test
    bun run build
    

    If any gate fails, stop and report. Do not proceed with a broken release.

  5. Cut the release — Run:

    bun run release -- --<bump_type> --wait-for-artifacts
    

    The release script performs its own final branch preflight, release quality gates, atomic branch/tag push, GitHub Release creation, artifact workflow wait, and asset verification. If main moves during the final push, the script rebases the release commit onto the updated upstream, reruns the release quality gates, retags, and retries the atomic push.

  6. Report — Show the new version, link to the GitHub Release, and confirm the runtime tarballs and .sha256 files are available.

Read the full file on GitHub · 73 lines

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. 5d ago First seen · 73 lines · 39 tokens per session scan A 48237d15e011

Subscribe to this mod's changes

ship-release is a skill published in the GitHub repository acartine/foolery (54 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 563 once invoked, about $0.0002 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.