release-it

release-it is a skill for Claude Code, Codex from buYoung/skills. It costs 80 tokens per session (1,837 once invoked), scanned A, original, MIT.

A setup guide for release-it, a command-line tool that automates software versioning and package publishing.

In plain words
What is it for?
Configuring release-it, making interactive or continuous-integration releases, adding release hooks, and managing pre-release versions.
Why use it?
It combines version changes, Git commits and tags, package publishing, and release creation into a configurable release process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Configuring release-it, making interactive or continuous-integration releases, adding release hooks, and managing pre-release versions.

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

Made for: Claude Code, Codex.

Its marketplace also offers this one on its own, as the plugin devops-skills/plugin install devops-skills after adding the marketplace above.

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-it

README.md
[![agentmods](https://agentmods.dev/badge/skills/buyoung/skills/release-it/github.svg)](https://agentmods.dev/skills/buyoung/skills/release-it)
Your own site
<a href="https://agentmods.dev/skills/buyoung/skills/release-it"><img src="https://agentmods.dev/badge/skills/buyoung/skills/release-it/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for release-it

Your own site · 80×15
<a href="https://agentmods.dev/skills/buyoung/skills/release-it"><img src="https://agentmods.dev/badge/skills/buyoung/skills/release-it.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,837 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 26
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 29
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00080 $0.01837
Opus 5 $0.00040 $0.00919
Sonnet 5 $0.00016 $0.00367
Haiku 4.5 $0.00008 $0.00184

Measured today against content hash 60dd6c942054, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

release-it 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 today.

The scan reads SKILL.md. This mod also ships 3 executable files (evals/run_interactive.py, examples/interactive-release/release-prompts.mjs, examples/interactive-release/release.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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-it/SKILL.md · 122 lines

How it starts

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

release-it Release Automation

release-it is a generic, pluggable CLI tool that automates versioning and package publishing. It handles version bumping, Git committing/tagging/pushing, npm publishing, and GitHub/GitLab release creation -- all in a single configurable workflow. Language-agnostic with a powerful plugin system for extending behavior.

Default Interactive Contract

Generate pnpm release using the project entry script and @inquirer/prompts adapter in interactive-workflow.md. All release questions use Inquirer; release-it performs the version update and Git operations.

  • Single project: pnpm release → choose version → confirm commit / commit → confirm tag / tag → confirm push / push.
  • Monorepo: pnpm release → choose one service app → choose version → confirm commit / commit → confirm tag / tag → confirm push / push.

The first question in a non-monorepo is the version selection. Do not add an app picker or a separate start confirmation. In a monorepo, offer only the verified service apps with a single-select picker, even when there is only one eligible app. Resolve an unclear service app boundary during setup, then use that app's version source, changelog, and tag policy.

Display the current version and concrete next versions. Always wait for the user's selection; recommended increments, existing settings, and CI environment variables cannot replace it. Pass the selected exact version and target configuration to release-it's API.

Ask each Git confirmation at its release-it execution point and await that action before asking the next. A negative answer or cancellation stops that action and the entire remaining flow. Use Inquirer's native y/n confirmation with default: false, so Enter declines; Ctrl+C cancels the active question. Report the actual remaining files, index, commit, tag, and push status; do not promise automatic rollback. Check for an interactive terminal before any release work. Do not use --ci, --only-version, canned answers, or a direct push hook in this default path.

Read the full file on GitHub · 122 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. today Changed · +26 lines · +10 tokens per session 60dd6c942054
  2. 9d ago First seen · 96 lines · 70 tokens per session scan A 4e4eb98f24f8

Subscribe to this mod's changes

release-it is a skill published in the GitHub repository buYoung/skills (21 stars, last pushed yesterday), licensed MIT. It adds 80 tokens to every session and 1,837 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-08-30.