release

A release procedure for publishing a new version of the booping plugin through Git and GitHub. It checks the version, prepares release notes, merges the release branch, creates a tag, and publishes the release.

In plain words
What is it for?
Use it when shipping a version from a release branch, including tagging it and creating its GitHub release.
Why use it?
It turns several release checks and publishing steps into one documented process and helps prevent version or branch mistakes.

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

Made for: Claude Code, Codex.

Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,545 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.00056 $0.01545
Opus 5 $0.00028 $0.00772
Sonnet 5 $0.00011 $0.00309
Haiku 4.5 $0.00006 $0.00154

Measured 2d ago against content hash 16b479c401a3, 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 2d 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 · 119 lines

How it starts

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

release — cut a booping plugin release

Releases the booping plugin from a release/X.Y.Z branch: verifies the version, drafts public release notes, merges to master, tags vX.Y.Z, and publishes the GitHub release.

Run from the repo root with the release/X.Y.Z branch checked out. Default branch is master. Version is single-source in .claude-plugin/plugin.json.

Preflight — gather facts

Run these read-only; report the resolved values back before doing anything that writes:

git rev-parse --abbrev-ref HEAD                       # current branch — expect release/X.Y.Z
jq -r .version .claude-plugin/plugin.json             # the version to ship
gh release list --limit 1                             # last published release
git status --porcelain                                # working tree must be clean
git remote                                            # remote name — this repo uses `gh`, NOT origin

Resolve: VERSION (from plugin.json), TAG = v$VERSION, LAST_TAG (newest existing v* tag), BRANCH, and REMOTE (the single remote — do not assume origin; use whatever git remote reports). Substitute $REMOTE into every push/fetch/log-range below.

Phase 0 — Verify version + previous release

Gate every check; if any fails, stop and report — do not proceed to merge.

  1. Clean treegit status --porcelain is empty. Dirty tree → stop.
  2. On the release branchBRANCH is release/$VERSION. If it is master or a mismatched release/*, stop and ask the user to switch.
  3. Version bumped$VERSION is strictly greater than LAST_TAG (semver). The bump commit follows the convention chore(booping): bump plugin version <prev> → $VERSION; confirm it exists in git log master..HEAD. If plugin.json still equals LAST_TAG, stop — the bump is missing.
  4. Tag is freegit tag -l "$TAG" and gh release view "$TAG" both return nothing. An existing tag/release → stop (already released).
  5. Branch is ahead of master — fetch first (git fetch $REMOTE), then git log $REMOTE/master..HEAD --oneline is non-empty (there is something to release).

Read the full file on GitHub · 119 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. 2d ago First seen · 119 lines · 56 tokens per session scan A 16b479c401a3

Subscribe to this mod's changes

release is a skill published in the GitHub repository A/claude-booping (14 stars, last pushed 17d ago), licensed MIT. It adds 56 tokens to every session and 1,545 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.