release

release is a skill for Claude Code, Codex from YoungjaeDev/my-claude-plugins. It costs 128 tokens per session (1,859 once invoked), scanned A, original, MIT.

A release workflow for publishing a versioned GitHub release, a named distribution of a project at a particular version.

In plain words
What is it for?
Use it to bump a project version, update its manifest files, create a Git tag, push it, and publish a release with generated notes.
Why use it?
It organizes version changes, tags, validation, commits, and release notes into one repeatable process.

Skill for Claude CodeCodex

Part of the github-dev plugin — 9 skills 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/youngjaedev/my-claude-plugins/release
Any agent
npx skills add YoungjaeDev/my-claude-plugins --skill release
Clone the repo
git clone --depth 1 https://github.com/YoungjaeDev/my-claude-plugins

Made for: Claude Code, Codex.

Or install github-dev, the plugin that ships this one along with the rest of its 9 skills.

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/youngjaedev/my-claude-plugins/release.svg)](https://agentmods.dev/skills/youngjaedev/my-claude-plugins/release)
Your own site
<a href="https://agentmods.dev/skills/youngjaedev/my-claude-plugins/release"><img src="https://agentmods.dev/badge/skills/youngjaedev/my-claude-plugins/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 128 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,859 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.00128 $0.01859
Opus 5 $0.00064 $0.00929
Sonnet 5 $0.00026 $0.00372
Haiku 4.5 $0.00013 $0.00186

Measured 4d ago against content hash c99350c55169, 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 4d 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.

plugins/github-dev/skills/release/SKILL.md · 194 lines

How it starts

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

Release

Create a versioned GitHub release with automatic version detection, version file updates, tagging, and changelog generation via gh release create --generate-notes.

Arguments

  • Version (optional): Explicit version string, e.g., 1.2.0
  • --patch / --minor / --major: Semver bump shorthand (overrides auto-detection)
  • --dry-run: Preview version bump and changelog without creating anything
  • --draft: Create as draft release on GitHub
  • --prerelease: Mark as pre-release on GitHub
  • --skip-validation: Skip build/test verification before releasing
  • --init <commit>: Create initial baseline tag (for first-ever release)

Workflow

  1. Check Prerequisites

    • Verify gh CLI is installed and authenticated: gh auth status
    • Verify clean working tree: git status --porcelain
      • If uncommitted changes exist, prompt user to commit or stash first
    • Verify current branch is pushed to remote: git rev-parse --abbrev-ref --symbolic-full-name @{u}
  2. Detect Previous Tag

    • Run git describe --tags --abbrev=0 2>/dev/null to find the latest tag
    • If no tags exist:
      • If --init <commit> provided: create baseline tag at specified commit
        git tag v0.0.0 <commit>
        
      • If --init not provided: prompt user with options:
        • Tag current HEAD as v0.0.0 (baseline only, no release)
        • Tag a specific commit as baseline
        • Abort and let user set up tags manually
      • After baseline created, re-run detection
  3. Detect Version Files

    Scan project root for known version manifest files. Multiple files may coexist (e.g., Tauri projects have both Cargo.toml and tauri.conf.json).

    Detection File Version Location Project Type
    package.json "version": "X.Y.Z" Node.js
    Cargo.toml version = "X.Y.Z" Rust
    pyproject.toml version = "X.Y.Z" Python
    setup.cfg version = X.Y.Z Python (legacy)
    tauri.conf.json "version": "X.Y.Z" Tauri

Read the full file on GitHub · 194 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. 4d ago First seen · 194 lines · 128 tokens per session scan A c99350c55169

Subscribe to this mod's changes

release is a skill published in the GitHub repository YoungjaeDev/my-claude-plugins (2 stars, last pushed 9d ago), licensed MIT. It adds 128 tokens to every session and 1,859 once invoked, about $0.0006 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-31.