Borrowing it
Nothing to install: this file belongs to d-kuro/kirocc. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/d-kuro/kirocc/main/.claude/skills/release-kirocc/SKILL.mdgit clone --depth 1 https://github.com/d-kuro/kiroccWrote 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/d-kuro/kirocc/release-kirocc)<a href="https://agentmods.dev/skills/d-kuro/kirocc/release-kirocc"><img src="https://agentmods.dev/badge/skills/d-kuro/kirocc/release-kirocc.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.00087 | $0.01472 |
| Opus 5 | $0.00044 | $0.00736 |
| Sonnet 5 | $0.00017 | $0.00294 |
| Haiku 4.5 | $0.00009 | $0.00147 |
Grade A, and why
release-kirocc 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 — 203 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release
Automate the kirocc release process. Takes a version argument (e.g., /release-kirocc v0.1.0).
Prerequisites
ghCLI installed and authenticated- Write access to
d-kuro/kirocc
Release Flow
The release is a two-phase process. Phase 1 prepares the release (branch, notes, PR). Phase 2 happens after the PR is merged (tag, publish, sync notes). Guide the user through each step, confirming before destructive or visible actions.
Phase 1: Prepare Release
Step 1 — Determine version
Parse the version from the argument. If not provided, ask the user. The version must follow semver format: vX.Y.Z (with leading v). If the user gives a version without the v prefix, add it.
Find the previous tag to use for changelog comparison:
git tag --sort=-v:refname | head -1
If no previous tag exists, use the first commit as the base.
Step 2 — Update main and create release branch
git checkout main
git pull origin main
git checkout -b release/<version>
Step 3 — Find changes since last release
Gather PR information for release notes. Find the date of the previous tag (or use repo creation date if first release):
PREV_TAG=$(git tag --sort=-v:refname | head -1)
if [ -n "$PREV_TAG" ]; then
SINCE=$(git log -1 --format=%aI "$PREV_TAG")
else
SINCE=$(git log --reverse --format=%aI | head -1)
fi
List merged PRs since that date:
gh pr list --state merged --search "merged:>$SINCE" --json number,title,author,labels
Step 4 — Find external contributors
Exclude the maintainer and bots:
gh pr list --state merged --search "merged:>$SINCE" \
--json number,title,author \
--jq '.[] | select(.author.login != "d-kuro" and (.author.login | test("\\[bot\\]$") | not)) | "- @\(.author.login) (#\(.number))"'
If no external contributors, omit the Contributors section from the release notes.
Step 5 — Write release notes
Create docs/release-notes/<version>.md using the template below. Categorize PRs by their content. Omit empty sections.
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 · 203 lines · 87 tokens per session scan A cb80c196b8f0
release-kirocc is a skill published in the GitHub repository d-kuro/kirocc (57 stars, last pushed 5d ago), licensed Apache-2.0. It adds 87 tokens to every session and 1,472 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.
Other skills, from other repositories
version-bump
Automated semantic versioning and release workflow for Claude Code plugins. Handles version increments across package.json, marketplace.json, plugin.json manifests, build verification, git tagging, GitHub releases, and changelog generation. NPM publishing is the final human-required handoff because the maintainer…
batch
Research and plan a large-scale change, then execute it in parallel across 5–30 isolated worktree agents that each open a PR.
github
GitHub via gh CLI: PRs, issues, reviews, repos, auth.
release
Use this skill for EVERY ClawRouter release. Enforces the full checklist — version sync, CHANGELOG, build, tests, npm publish, git tag, GitHub release. No step can be skipped.
pack-submit
Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.
shiplog
Recap of everything shipped since the last run - cross-repo PRs, security fixes, star deltas, and X traction, synthesized into a digest article and a ready-to-post shiplog in your voice.