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 agentmods add skills/syhily/kobato/releasenpx skills add syhily/kobato --skill releasegit clone --depth 1 https://github.com/syhily/kobatoWrote 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/syhily/kobato/release)<a href="https://agentmods.dev/skills/syhily/kobato/release"><img src="https://agentmods.dev/badge/skills/syhily/kobato/release.svg" alt="Measured on agentmods" height="20"></a>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.00046 | $0.01150 |
| Opus 5 | $0.00023 | $0.00575 |
| Sonnet 5 | $0.00009 | $0.00230 |
| Haiku 4.5 | $0.00005 | $0.00115 |
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 5d 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 — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release
Execute a Kobato release. The user provides two arguments:
$version— the version to release (e.g.6.3.0).$next_version— the next development version on develop (e.g.6.4.0-dev).
The entire release lifecycle runs automatically: analyze commits, draft notes, bump version, push to develop, fast-forward merge to main, tag and create the GitHub release, switch back to develop, prepare the next cycle, and push.
Step 0: Validate arguments
Both $version and $next_version must be present and match X.Y.Z or X.Y.Z-prerelease (e.g. 6.3.0, 6.3.0-beta.1, 6.4.0-dev). If either is missing or malformed, stop and ask the user for the correct value.
Step 1: Validate preconditions
- Run
git branch --show-current— must be ondevelop. - Run
git status --porcelain— working tree must be clean. If dirty, stop and tell the user to commit or stash. - Run
node scripts/release.ts since-last— note the last released tag.
Step 2: Analyze commits
Run git log <last-tag>..HEAD --format="%h %s" to get all commits since the last release.
If there are zero commits, tell the user there's nothing to release and stop.
Step 3: Study the release notes style
Run gh release view <last-tag> to read the most recent release notes body. This is your primary style reference.
Also read the second-most-recent release for additional context: run gh release view <tag-before-that>.
Internalize these style rules:
- Title:
## Kobato X.Y.Z(h2, with "Kobato" prefix) - Lead paragraph: 1–2 sentences summarizing the release themes, with bolded feature names inline
- Sections: Use
###headers with emoji prefixes —### ✨ New Features,### 🛡️ Security Hardening,### 🏗️ Architecture & Refactoring,### 🔧 Build & Dependencies,### 🐛 Fixes. Only include sections that have entries. Add extra sections (e.g.,### 🎨 UI Redesign,### 🎵 Music Player) if a thematic grouping makes sense. - Sub-headers:
**Bold Title Case**to group related items within a section. - Bullets: Each change is a single
-bullet, concise and technical. Describe what changed and often why. Use sentence case. - Language: English. Technical, precise, no first person.
- Emojis: Only as section header prefixes, never inline.
- Footer:
**Full Changelog**: [prev...current](https://github.com/syhily/kobato/compare/PREV...CURRENT)— a clickable markdown link
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.
- 5d ago First seen · 94 lines · 46 tokens per session scan A cb2e9dff4fc5
release is a skill published in the GitHub repository syhily/kobato (115 stars, last pushed yesterday), licensed MIT. It adds 46 tokens to every session and 1,150 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
agent-release-swarm
Agent skill for release-swarm - invoke with $agent-release-swarm.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
release
Cut a Symphony release by bumping the committed version, landing it, tagging the merged commit, and verifying the Burrito release workflow. Use when asked to release, tag, or retag Symphony.
changelog
Create changelog files for important commits in a PR.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
refresh-arm-sdk-release
WORKFLOW SKILL — Prepares Azure.ResourceManager SDK refresh pull requests in azure-sdk-for-net. WHEN: "prepare sdk refresh", "refresh Azure.ResourceManager package", "update ARM SDK from autorest tag", "refresh changelog dependencies". INVOKES: git and GitHub pull request tools for branch, commit, push, and PR…