release

release is a skill for Claude Code from jayvee/aigon. It costs 79 tokens per session (1,604 once invoked), scanned A, original, Apache-2.0.

A release workflow for pushing Aigon changes, creating version tags and changelog entries, and publishing packages to npm.

In plain words
What is it for?
Use it to push commits, run deployment checks, cut a tagged version, or publish a beta or stable npm package.
Why use it?
It separates simple sharing from versioned releases and package publishing, so each release action has a defined scope.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the AskUserQuestion tool; mentions Claude Code; mentions Codex.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/changelog-entry.js <version>.

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/jayvee/aigon
agentmods
npx agentmods add skills/jayvee/aigon/release

Made for: Claude Code.

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/jayvee/aigon/release.svg)](https://agentmods.dev/skills/jayvee/aigon/release)
Your own site
<a href="https://agentmods.dev/skills/jayvee/aigon/release"><img src="https://agentmods.dev/badge/skills/jayvee/aigon/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,604 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.1 $0.00079 $0.01604
Opus 5 $0.00039 $0.00802
Sonnet 5 $0.00016 $0.00321
Haiku 4.5 $0.00008 $0.00160

Measured 2d ago against content hash 5d900e577048, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 · 128 lines

How it starts

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

release

Three escalating actions, all wrapping scripts/ship.js. The mode is chosen by the user's intent — never escalate without asking.

git push                   share              cut                publish
  │                          │                  │                   │
  no gate            test:deploy        + version+tag        + npm publish
  no tag             + push branch      + CHANGELOG          (auto-routes
  no version                              entry              -beta→@next,
                                                             stable→@latest)

Step 0 — Ask mode first (MANDATORY, no exceptions)

Before doing anything else — even before running git commands — use AskUserQuestion to ask which mode they want. Do not infer from phrasing. Do not skip this step.

Question: "What kind of release do you want?"
Options:
  - git push          — push commits to origin, no tests, no version bump
  - share             — run test:deploy then push (no version tag)
  - cut               — version + tag + CHANGELOG entry (no npm publish)
  - publish to npm    — full release: tests + version + tag + npm publish

Only proceed to the steps below once the user has selected a mode.

share — npm run ship -- share

Runs test:deploy, pushes branch. No prompts beyond confirmation.

If the user just wants raw bytes off the laptop with no test gate (e.g. they committed scratch data), git push origin <branch> is correct — say so and run it. Don't escalate to share reflexively.

cut and publish — same flow, different final command

1. Pre-flight checks

Run in parallel:

  • git status --short — must be empty. If not, list files and stop.
  • git rev-list origin/main..HEAD --count — must be > 0. Else "nothing to ship".
  • git rev-parse --abbrev-ref HEAD — should be main. Else warn + confirm.

2. Choose version

Read current state:

  • Current version: node -p "require('./package.json').version"
  • Latest tag: git describe --tags --abbrev=0

Read the full file on GitHub · 128 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 · 128 lines · 79 tokens per session scan A 5d900e577048

Subscribe to this mod's changes

release is a skill published in the GitHub repository jayvee/aigon (25 stars, last pushed 5d ago), licensed Apache-2.0. It adds 79 tokens to every session and 1,604 once invoked, about $0.0004 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-09-03.