create-release

create-release is a skill for Claude Code from richkuo/rk-skills. It costs 43 tokens per session (1,322 once invoked), scanned A, original, MIT.

A workflow for publishing a versioned release on GitHub. A release is a named, downloadable version of a project, usually paired with notes describing its changes.

In plain words
What is it for?
Use it to update the project version, create an annotated semantic-version tag, and publish GitHub release notes.
Why use it?
It checks that the repository is clean, current, authenticated, and on the default branch before creating a release. It also determines the version increase from the changes.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery.

Part of the rk-skills plugin — 37 skills, 1 command shipped together

Good fit Use it to update the project version, create an annotated semantic-version tag, and publish GitHub release notes.

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

Made for: Claude Code.

Or install rk-skills, the plugin that ships this one along with the rest of its 37 skills, 1 command.

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 create-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/richkuo/rk-skills/create-release.svg)](https://agentmods.dev/skills/richkuo/rk-skills/create-release)
Your own site
<a href="https://agentmods.dev/skills/richkuo/rk-skills/create-release"><img src="https://agentmods.dev/badge/skills/richkuo/rk-skills/create-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,322 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 pass 7 Sept 2026
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.00043 $0.01322
Opus 5 $0.00022 $0.00661
Sonnet 5 $0.00009 $0.00264
Haiku 4.5 $0.00004 $0.00132

Measured 8d ago against content hash 871dbbbd6bf2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

create-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 8d 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.

skills/create-release/SKILL.md · 97 lines

How it starts

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

create-release

Cut an annotated semver tag and publish a GitHub release with auto-generated notes.

Preconditions — verify ALL before doing anything

git status              # must be clean — stop if dirty, surface the diff
git branch --show-current   # must be on default branch (main/master)
git fetch origin && git status  # must be up to date with origin
gh auth status          # must succeed

If any check fails: stop and tell the user. Do not proceed.

Steps

  1. Inspect actual tags — never rely on memory or CHANGELOG:

    git tag --sort=-v:refname | head -10
    
  2. Review commits since last tag:

    git log <last-tag>..HEAD --oneline
    
  3. Determine semver bump and state rationale — breaking = major, new feature = minor, fixes/polish = patch. Proceed immediately. Only pause to ask the user if the bump type is genuinely ambiguous (e.g. unclear whether commits are breaking).

  4. Bump the repo's declared version — MANDATORY whenever a version field exists. This is the package/manifest version, not just a "user-facing app" version: a library, CLI, or installer package (e.g. one with a package.json "version") counts and must be bumped. Do not skip this because the repo "isn't an app." Grep the repo for version fields and update every match to X.Y.Z so the tag points at a commit carrying the correct version. Common locations (check all, update every match):

    File Field
    package.json "version"
    .claude-plugin/plugin.json "version"
    app.json / app.config.js / app.config.ts expo.version
    pubspec.yaml version
    Cargo.toml [package] version
    pyproject.toml [project] version or [tool.poetry] version
    iOS *.xcodeproj/project.pbxproj MARKETING_VERSION
    Android build.gradle versionName
    • Leave native build numbers (buildNumber, versionCode, CURRENT_PROJECT_VERSION) alone unless the user asks.
    • If — and only if — no version field exists anywhere, skip silently and proceed to step 5.
    • Publish-on-release check (do this every time): inspect .github/workflows/ for a job that runs on release: published (e.g. npm publish). These jobs are almost always idempotency-guarded on the manifest version — if package.json still holds the previous version, the guard sees it already published and silently skips, so the release ships to GitHub but never reaches the registry. If such a workflow exists, bumping the manifest version in this step is what makes the publish actually fire; a mismatch between the tag and the manifest version is a bug.
    • If a version field exists, edit it, then commit and push before tagging:
      git commit -am "chore(release): bump version to X.Y.Z"
      git push origin <default-branch>
      
    • The tag must point at this bump commit — create the tag only after the commit and push succeed.

Read the full file on GitHub · 97 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. 8d ago First seen · 97 lines · 43 tokens per session scan A 871dbbbd6bf2

Subscribe to this mod's changes

create-release is a skill published in the GitHub repository richkuo/rk-skills (49 stars, last pushed today), licensed MIT. It adds 43 tokens to every session and 1,322 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

github-release

Guides IA through releasing a new version of a GitHub library end-to-end. Handles SemVer versioning and Keep a Changelog formatting automatically.

boshi-xixixi/TraeSkill · 34 tokens

create-github-pull-request-from-specification

Create GitHub Pull Request for feature request from specification file using pullrequesttemplate.md template.

boshi-xixixi/TraeSkill · 28 tokens

shipping

Project shipping is authorized immediate delivery execution for identified, already-completed software work. Select only when the user explicitly authorizes an immediate concrete action to commit, push, prepare or create a PR, merge, tag, package, publish, release, deploy, perform an exact repository handoff, or…

static-var/Keystone · 111 tokens

gh-cli

GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.

boshi-xixixi/TraeSkill · 45 tokens

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump…

addyosmani/agent-skills · 74 tokens

comet-archive

A workflow for the fifth stage of Comet Classic: archiving a completed change, merging its specification updates, and finishing the branch. It uses Comet commands and a fixed layout for tracking the change.

rpamis/comet · 33 tokens