release

release is a skill for Claude Code, Codex from changoo89/claude-pilot. It costs 34 tokens per session (953 once invoked), scanned A, original, MIT.

A release checklist for publishing a new version of a coding-agent plugin. It updates version files, creates a Git tag, and can create a GitHub release.

In plain words
What is it for?
Use it to release patch, minor, or major plugin versions, generate a changelog from commits, validate the project, and publish the release to GitHub.
Why use it?
It removes the need to repeat release steps by hand and helps keep version information consistent. It can also preview the changes before publishing.

Skill for Claude CodeCodex

Part of the claude-pilot plugin — 32 skills, 11 commands, 14 agents, 2 MCP servers shipped together

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

Made for: Claude Code, Codex.

Or install claude-pilot, the plugin that ships this one along with the rest of its 32 skills, 11 commands, 14 agents, 2 MCP servers.

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/changoo89/claude-pilot/release.svg)](https://agentmods.dev/skills/changoo89/claude-pilot/release)
Your own site
<a href="https://agentmods.dev/skills/changoo89/claude-pilot/release"><img src="https://agentmods.dev/badge/skills/changoo89/claude-pilot/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 953 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.00034 $0.00953
Opus 5 $0.00017 $0.00477
Sonnet 5 $0.00007 $0.00191
Haiku 4.5 $0.00003 $0.00095

Measured 5d ago against content hash 1ef2c94800cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, 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 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.

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

How it starts

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

SKILL: Plugin Release Workflow

Purpose: Execute plugin release workflow with version bumping, git tagging, and GitHub release Target: Plugin maintainers releasing new versions


Quick Start

When to Use This Skill

  • Release new plugin version
  • Bump version (patch/minor/major)
  • Create git tag and GitHub release

Quick Reference

# Standard release (patch version, CI handles GitHub release)
/999_release

# Minor version
/999_release minor

# Force local GitHub release
/999_release patch --create-gh

# Dry run (preview)
/999_release patch --dry-run

What This Skill Covers

In Scope

  • Version synchronization (plugin.json, marketplace.json)
  • Git tagging and pushing
  • CHANGELOG auto-generation from commits
  • GitHub release creation (optional)
  • Pre-flight validation

Out of Scope

  • Plugin architecture → @CLAUDE.md
  • Git workflow patterns → @.claude/skills/git-master/SKILL.md
  • Migration guide → MIGRATION.md

Core Concepts

Single Source of Truth

plugin.json is the PRIMARY version source:

{
  "version": "4.2.0"  // Always update this file
}

Auto-synced file (DO NOT edit manually):

  • marketplace.json - Plugin entry version

Release Workflow

Pre-flight → Version bump → CHANGELOG → Git tag → GitHub release

  1. Pre-flight Checks: Validate jq, git, working tree, plugin manifests
  2. Version Bump: Update version files atomically
  3. CHANGELOG: Auto-generate from git commits (conventional commit format)
  4. Git Operations: Commit, tag, push to remote
  5. GitHub Release: Optional (local or CI/CD)

CI/CD Integration

Hybrid model: Local tagging + CI/CD release creation

  • Local: Bump version, create tag, push
  • CI: Validates versions, creates GitHub release

Benefits:

  • No API rate limits
  • No authentication setup
  • Runs on GitHub's infrastructure

Execution Steps (Summary)

Parse Arguments

  • VERSION_BUMP="${1:-patch}" - Default: patch
  • --dry-run - Preview changes
  • --skip-gh - Skip local GitHub release (default)
  • --create-gh - Force local GitHub release

Read the full file on GitHub · 141 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. 5d ago First seen · 141 lines · 34 tokens per session scan A 1ef2c94800cc

Subscribe to this mod's changes

release is a skill published in the GitHub repository changoo89/claude-pilot (20 stars, last pushed 6mo ago), licensed MIT. It adds 34 tokens to every session and 953 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.

Related

Other skills, from other repositories

loop-forge

Turn a one-line description of a repetitive task into a reusable, self-guarding slash command. loop-forge diagnoses the task into one of 5 loop shapes (Batch / Pipeline / Refine / Watch / Explore), interviews for the blanks, and auto-injects two safety devices the user didn't know they needed — an independent verifier…

sangrokjung/claude-forge · 262 tokens

skill-factory

Analyze session work and automatically convert reusable patterns into Claude Code skills. Use when: "세션을 스킬로", "스킬 만들어", "이거 스킬로", "skill factory", "이 작업 자동화해", "스킬 추출", "make this a skill", "extract skill", "convert to skill", "스킬 팩토리", "자동 스킬 생성". Differs from skill-creator (archived) and manage-skills (drift…

sangrokjung/claude-forge · 122 tokens

harness-diet

Measure and shrink the always-loaded context of a Claude Code harness (CLAUDE.md + rules without paths frontmatter) back under budget — migrate narrative to reference files, convert rules to path-scoped or skill-triggered loading, and verify zero governance loss with deterministic preservation checks. Use on "harness…

sangrokjung/claude-forge · 140 tokens

session-wrap

Use when wrapping up a session before ending. 4 parallel subagents detect doc updates, repeated patterns, learning points, and follow-ups, then a verifier deduplicates and presents choices. Triggers on /session-wrap, session wrap, session cleanup, end of session.

sangrokjung/claude-forge · 58 tokens

relay

Session relay — compresses what's been done so far (writes a one-liner for /compact) and generates a "next task" prompt (a baton) for the user to hand off. Use on requests like "relay / hand off / next session / continue after compact / baton / handoff / clean up context and continue next task." Does not run /compact…

sangrokjung/claude-forge · 97 tokens

strategic-compact

Suggests manual context compaction at logical intervals to preserve context through task phases rather than arbitrary auto-compaction.

sangrokjung/claude-forge · 27 tokens