release

release is a skill for Claude Code, Codex from kesteva/cyboflow. It costs 101 tokens per session (2,983 once invoked), scanned A, original, MIT.

A release procedure for the Cyboflow macOS desktop app. It covers testing, version and changelog updates, building signed and notarized installers for both Mac processor types, publishing update feeds, and creating a GitHub release.

In plain words
What is it for?
Use it when preparing, verifying, and publishing a Cyboflow release, including stable and development builds for arm64 and x64 Macs.
Why use it?
It makes sure users can receive the new version through the app’s actual update channel, not only from GitHub.

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

Made for: Claude Code, Codex.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/kesteva/cyboflow/release.svg)](https://agentmods.dev/skills/kesteva/cyboflow/release)
Your own site
<a href="https://agentmods.dev/skills/kesteva/cyboflow/release"><img src="https://agentmods.dev/badge/skills/kesteva/cyboflow/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,983 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00101 $0.02983
Opus 5 $0.00051 $0.01491
Sonnet 5 $0.00020 $0.00597
Haiku 4.5 $0.00010 $0.00298

Measured today against content hash fdd09cbe1dfc, 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 1 finding 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 today.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s https://updates.cyboflow.com/stable/latest-mac.yml | grep -m1 version
.claude/skills/release/SKILL.md · 205 lines

How it starts

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

Release

Execute a Cyboflow release. The authoritative procedure and its rationale live in docs/RELEASE-RUNBOOK.md — read it first; this skill is the executable checklist. Work through the phases in order and do not skip verification.

Guardrails

  • Never run build:mac:universal — it fails on the bundled claude/codex binaries. The release is per-arch DMGs.
  • R2 is the real release channel, not GitHub. The app auto-updates from updates.cyboflow.com/<variant>/latest-mac.yml (R2) and never reads the GitHub release. Publishing GitHub without the R2 step (Phase 5) leaves every user on the old version. Do NOT call the release done until both R2 feeds show the new version.
  • Hold all outward actions until the user confirms. Do the gate, bump, builds, and verification, then stop and ask before publishing to R2, pushing main, the tag, or the GitHub release — unless the user has already said to push without asking.
  • Every mac build recompiles native modules for the Electron ABI; restore the host-Node ABI afterward — rebuild both or the gate fails with a pty.node / better_sqlite3.node dlopen arch mismatch: pnpm rebuild better-sqlite3 @homebridge/node-pty-prebuilt-multiarch.
  • Don't launch the app while a build:mac runs (it can wedge the DMG eject).

Phase 0 — Preconditions

  1. Confirm a clean tree on main (git status), and read the recent log to see what's shipping (git log --oneline v<last>..HEAD).
  2. Decide the new version. Default is a patch bump of the current package.json version; ask the user if a minor/major bump is intended.
  3. Confirm creds exist in ./.envrc.local (8 vars): Apple APPLE_ID, APPLE_TEAM_ID, APPLE_APP_SPECIFIC_PASSWORD, CSC_LINK, CSC_KEY_PASSWORD
    • R2 R2_ACCOUNT_ID, R2_ACCESS_KEY_ID, R2_SECRET_ACCESS_KEY.
  4. Re-resolve the dependency tree before gating — the gate is otherwise blind to lockfile defects:
    pnpm install --frozen-lockfile
    
    node_modules can be self-consistent while the lockfile is not, so Phase 1 would pass against dependencies that no longer match what CI installs. This is exactly how 0.2.9 shipped a dead E2E suite: a dep bump split playwright (1.62.1) from @playwright/test (1.54.1) in the lock, but the un-reinstalled tree still held a matched 1.54.1 pair, so the local smoke tier passed and every nightly after it failed at spec collection. --frozen-lockfile also hard-fails outright when package.json and the lockfile disagree. Runs BEFORE step 5 on purpose: it prunes to host arch, so the cross-arch binary check must follow it, never precede it.
  5. Confirm all four agent binaries are present (a plain install prunes to host arch):
    ls -d node_modules/@anthropic-ai/claude-agent-sdk-darwin-{arm64,x64} \
          node_modules/@openai/codex-darwin-{arm64,x64}
    
    If any are missing, run the cross-arch install with --force (see runbook).

Read the full file on GitHub · 205 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. today Changed · +14 lines fdd09cbe1dfc
  2. 4d ago First seen · 191 lines · 101 tokens per session scan A 4f9e763668d1

Subscribe to this mod's changes

release is a skill published in the GitHub repository kesteva/cyboflow (54 stars, last pushed today), licensed MIT. It adds 101 tokens to every session and 2,983 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens