kirocc: Skill for Claude Code

.claude/skills/release-kirocc/SKILL.md

release-kirocc is a skill for Claude Code from d-kuro/kirocc. It costs 87 tokens per session (1,472 once invoked), scanned A, original, Apache-2.0.

A step-by-step guide for releasing a new version of kirocc, a Go command-line tool that acts as a local proxy server.

In plain words
What is it for?
Creating a release branch, preparing notes, opening a pull request, tagging the version, and syncing the GitHub Release after merging.
Why use it?
It organizes versioning, release notes, pull requests, tags, and GitHub Releases so release steps are not missed.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

This is d-kuro/kirocc's own configuration. It tells Claude Code how to work on kirocc itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything kirocc configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/d-kuro/kirocc/main/.claude/skills/release-kirocc/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/d-kuro/kirocc

Made for: Claude Code.

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-kirocc

README.md
[![agentmods](https://agentmods.dev/badge/skills/d-kuro/kirocc/release-kirocc.svg)](https://agentmods.dev/skills/d-kuro/kirocc/release-kirocc)
Your own site
<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>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,472 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.00087 $0.01472
Opus 5 $0.00044 $0.00736
Sonnet 5 $0.00017 $0.00294
Haiku 4.5 $0.00009 $0.00147

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

Security

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.

.claude/skills/release-kirocc/SKILL.md · 203 lines

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

  • gh CLI 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.

Read the full file on GitHub · 203 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 · 203 lines · 87 tokens per session scan A cb80c196b8f0

Subscribe to this mod's changes

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.