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.
npx skills add richkuo/rk-skills --skill create-releasegit clone --depth 1 https://github.com/richkuo/rk-skillsWrote 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.
[](https://agentmods.dev/skills/richkuo/rk-skills/create-release)<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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
-
Inspect actual tags — never rely on memory or CHANGELOG:
git tag --sort=-v:refname | head -10 -
Review commits since last tag:
git log <last-tag>..HEAD --oneline -
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).
-
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 toX.Y.Zso 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.tsexpo.versionpubspec.yamlversionCargo.toml[package] versionpyproject.toml[project] versionor[tool.poetry] versioniOS *.xcodeproj/project.pbxprojMARKETING_VERSIONAndroid build.gradleversionName- 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 onrelease: published(e.g.npm publish). These jobs are almost always idempotency-guarded on the manifest version — ifpackage.jsonstill 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.
- Leave native build numbers (
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.
- 8d ago First seen · 97 lines · 43 tokens per session scan A 871dbbbd6bf2
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.
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.
create-github-pull-request-from-specification
Create GitHub Pull Request for feature request from specification file using pullrequesttemplate.md template.
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…
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.
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…
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.