release

A release workflow for the sim-use project, covering version changes, builds, signing, packaging, and publishing through a Homebrew tap, a Git repository that distributes macOS packages.

In plain words
What is it for?
Use it to cut a sim-use release, update its changelog, build the products, create the package, and update the Homebrew formula.
Why use it?
It organizes the checks and publishing steps needed for a release, including repository status and required build tools.

Skill for Claude CodeCodex

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/lycorp-jp/sim-use/release
Any agent
npx skills add lycorp-jp/sim-use --skill release
Clone the repo
git clone --depth 1 https://github.com/lycorp-jp/sim-use

Made for: Claude Code, Codex.

Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,832 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.00061 $0.01832
Opus 5 $0.00030 $0.00916
Sonnet 5 $0.00012 $0.00366
Haiku 4.5 $0.00006 $0.00183

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

Security

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 3d 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.

.agents/skills/release/SKILL.md · 153 lines

How it starts

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

This skill ships a new version of sim-use. The human types /release and you handle everything: version, CHANGELOG, one confirmation, then drive every command through to the homebrew-tap commit.

Run from the sim-use repo root (git rev-parse --show-toplevel).

The build/sign/tarball/formula logic lives in scripts/local-release.sh. Do not duplicate it. Your job is orchestration: state checks, version arithmetic, CHANGELOG rendering, user confirmation, git/tap operations, error recovery.

Step 1: Pre-flight

Run these checks. Abort with a clear error if any fails.

  1. Current branch is main.
  2. Working tree is clean (git status --porcelain returns nothing).
  3. Local main is in sync with origin (git fetch origin main then compare HEADs). If local is ahead, ask to push first; if behind, abort.
  4. gh auth status succeeds (github.com).
  5. build_products/Frameworks/ exists. If missing, run scripts/build.sh dev to build them.
  6. The homebrew-tap clone exists at ../lycorp-jp-homebrew-tap. If missing:
    git clone [email protected]:lycorp-jp/homebrew-tap.git ../lycorp-jp-homebrew-tap
    
    If it exists, verify it's clean and pull latest.
  7. Android bridge toolchain: scripts/build-bridge.sh --check succeeds. 7.5. E2E confidence suites are green (see docs/ai/xxxx-e2e-confidence-suite/):
    make e2e            # iOS + Android scripted E2E vs Playground, in sequence
    
    (make e2e-ios / make e2e-android run one platform each.) A full green iOS pass alone is ~15 min, so budget ~20+ min. It prints a full pass/fail map and keeps going past failures. Any red suite blocks the release unless the user explicitly waives it at Step 3. Optional but recommended when skill prose changed this release (real claude -p cost): make eval ARGS="-y -t quick" — the /run-evals skill covers environment prep (Device Hub closed, fixtures installed) and pinning which sim-use binary is under test.
  8. Signing + notarization readiness:
    security find-identity -v -p codesigning | grep -F "NAVER Japan K.K. (GFPYJQXRSN)"
    xcrun notarytool history --keychain-profile sim-use-notary >/dev/null 2>&1
    
    If either fails, surface the gap at Step 3 — don't silently switch to ad-hoc.

Read the full file on GitHub · 153 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. 3d ago First seen · 153 lines · 61 tokens per session scan A 0cb0f09ace81

Subscribe to this mod's changes

release is a skill published in the GitHub repository lycorp-jp/sim-use (1,297 stars, last pushed 6d ago), licensed Apache-2.0. It adds 61 tokens to every session and 1,832 once invoked, about $0.0003 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.

Related

Other skills, from other repositories