release-init

release-init is a skill for Claude Code, Codex from RockyHong/super-bootstrap. It costs 25 tokens per session (1,456 once invoked), scanned A, original, MIT.

A project setup tool that detects whether a codebase is built with Unity, Tauri, Node.js, native iOS, native Android, or a general setup, then creates a project-specific release procedure.

In plain words
What is it for?
Use it once when starting work on a project to prepare version-reading and release instructions for that codebase.
Why use it?
It removes the need to manually identify the project type and write release steps. It also checks whether a release procedure already exists before replacing it.

Skill for Claude CodeCodex

Part of the super-bootstrap plugin — 13 skills, 7 agents shipped together

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.

agentmods
npx agentmods add skills/rockyhong/super-bootstrap/release-init
Any agent
npx skills add RockyHong/super-bootstrap --skill release-init
Clone the repo
git clone --depth 1 https://github.com/RockyHong/super-bootstrap

Made for: Claude Code, Codex.

Or install super-bootstrap, the plugin that ships this one along with the rest of its 13 skills, 7 agents.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/rockyhong/super-bootstrap/release-init.svg)](https://agentmods.dev/skills/rockyhong/super-bootstrap/release-init)
Your own site
<a href="https://agentmods.dev/skills/rockyhong/super-bootstrap/release-init"><img src="https://agentmods.dev/badge/skills/rockyhong/super-bootstrap/release-init.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,456 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00025 $0.01456
Opus 5 $0.00013 $0.00728
Sonnet 5 $0.00005 $0.00291
Haiku 4.5 $0.00003 $0.00146

Measured 4d ago against content hash 79b186cf7f1d, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

release-init 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 4d 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.

plugins/super-bootstrap/skills/release-init/SKILL.md · 160 lines

How it starts

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

Release Init

Protocol

1. Check for existing project skill

Look for .claude/skills/release/SKILL.md in the repo root.

If it exists, ask:

Project release skill already exists. Overwrite with fresh detection? (y/n)

Stop if user declines.

2. Detect project type

Scan the working directory. First match wins:

Marker Type
ProjectSettings/ProjectSettings.asset (search recursively) unity
package.json + src-tauri/ directory tauri
package.json node
*.xcodeproj or *.xcworkspace (in root) ios-native
build.gradle or build.gradle.kts (in root) android-native
None of the above generic

3. Discover version files and current values

Read current version values from the detected files:

unity:

  • Find ProjectSettings/ProjectSettings.asset (may be nested, e.g. ProjectName/ProjectSettings/)
  • Read: bundleVersion (display version), AndroidBundleVersionCode, buildNumber.iPhone
  • Report all three values

tauri:

  • package.jsonversion
  • src-tauri/tauri.conf.jsonversion
  • src-tauri/Cargo.tomlversion

node:

  • package.jsonversion

ios-native:

  • Find Info.plistCFBundleShortVersionString, CFBundleVersion

android-native:

  • build.gradle or build.gradle.ktsversionName, versionCode

generic:

  • Ask user: "Where does your version live? (file path and field name)"

4. Detect platforms and recommend tagging approach

Determine if multi-platform based on project type and evidence:

Type Signal Recommendation
unity Has both Android + iOS build settings in ProjectSettings Multi-platform: android, ios
unity Only one platform target Single platform, no platform tags
tauri Desktop app Single artifact, no platform tags
node Web app / server Single deploy, no platform tags
ios-native iOS only Single platform, no platform tags
android-native Android only Single platform, no platform tags

Read the full file on GitHub · 160 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 160 lines · 25 tokens per session scan A 79b186cf7f1d

Subscribe to this mod's changes

release-init is a skill published in the GitHub repository RockyHong/super-bootstrap (3 stars, last pushed 7d ago), licensed MIT. It adds 25 tokens to every session and 1,456 once invoked, about $0.0001 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-31.

Related

Other skills, from other repositories

craft-plugin-release

Releasing Craft CMS plugins — tagging, Packagist propagation, GitHub releases, branch promotion, shared-library ordering, history rewrites. ALWAYS load when cutting, preparing, verifying, or debugging a plugin release: bumping a version, dating a changelog, creating or moving a git tag, or checking what Packagist…

michtio/craftcms-claude-skills · 347 tokens

writing-skills

Use this whenever the user asks to write, author, or scaffold a new SecureContext skill (Anthropic-style filesystem skill at /.claude/skills/ / or /.claude/skills/ /). The skill walks the agent through the four-invariant checklist, generates a SKILL.md from a template, and runs the bundled linter + admission preview…

iampantherr/SecureContext · 102 tokens

publish-github-release

Use this whenever the user asks to ship, publish, release, tag, or cut a new version of the project — OR when CHANGELOG.md has an "Unreleased" / in-progress section ready to be shipped. The skill bumps the version across all version-bearing files, regenerates the CHANGELOG entry from git log since the last tag…

iampantherr/SecureContext · 99 tokens

release-docs

Diff-driven documentation sync after a release. Determines what source files changed, delegates changelog to zuvo:docs, updates only docs whose source changed. Flags: --dry-run, explicit range argument.

greglas75/zuvo · 44 tokens

ship

Ship a build — pre-flight checks, deploy, document, verify, monitor. Use when deploying code, publishing packages, or releasing.

martineserios/thebrana · 29 tokens

release

BeeCount 全家桶发版流水线:App(BeeCount)与自建云(BeeCount-Cloud)打 tag 触发 CI 全自动构建,加上 changelog 双格式、官网文档同步、宣传视频与社媒文案的完整收尾。当用户说"发布新版本"、"发版"、"App 发 X.Y.Z"、"cloud 发个版本"、"打个 tag 发布"、"release 一下"、"准备上架"时必须使用本技能——哪怕只发一端、哪怕只是"先把 changelog 写了",也按本流水线对应步骤走。不适用于:日常 PR 合并(不发版)、honeycomb/video-studio 等其它仓的发布、商店审核被拒的申诉处理。.

TNT-Likely/honeycomb · 176 tokens