AccordAgents-desktop-app: Skill for Codex

.agents/skills/release-beta/SKILL.md

release-beta is a skill for Codex from juliakrivchikova/AccordAgents-desktop-app. It costs 59 tokens per session (1,129 once invoked), scanned A, original, Apache-2.0.

A procedure for preparing and checking beta releases of an AccordAgents macOS application.

In plain words
What is it for?
It helps verify the approved code, build the beta, inspect its dependencies, check signing and notarization, and validate update files.
Why use it?
It reduces the chance of publishing a package that is signed or uploaded correctly but fails when users launch it.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is juliakrivchikova/AccordAgents-desktop-app's own configuration. It tells Codex how to work on AccordAgents-desktop-app 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 AccordAgents-desktop-app configures →

Reuse

Borrowing it

Nothing to install: this file belongs to juliakrivchikova/AccordAgents-desktop-app. 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/juliakrivchikova/AccordAgents-desktop-app/main/.agents/skills/release-beta/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/juliakrivchikova/AccordAgents-desktop-app

Made for: 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-beta

README.md
[![agentmods](https://agentmods.dev/badge/skills/juliakrivchikova/accordagents-desktop-app/release-beta/github.svg)](https://agentmods.dev/skills/juliakrivchikova/accordagents-desktop-app/release-beta)
Your own site
<a href="https://agentmods.dev/skills/juliakrivchikova/accordagents-desktop-app/release-beta"><img src="https://agentmods.dev/badge/skills/juliakrivchikova/accordagents-desktop-app/release-beta/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for release-beta

Your own site · 80×15
<a href="https://agentmods.dev/skills/juliakrivchikova/accordagents-desktop-app/release-beta"><img src="https://agentmods.dev/badge/skills/juliakrivchikova/accordagents-desktop-app/release-beta.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,129 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.
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.00059 $0.01129
Opus 5 $0.00030 $0.00564
Sonnet 5 $0.00012 $0.00226
Haiku 4.5 $0.00006 $0.00113

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

Security

Grade A, and why

release-beta 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/verify-release.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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-beta/SKILL.md · 101 lines

How it starts

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

Release Beta

Treat npm run release:beta as release orchestration, not dependency installation. A release is complete only after the exact published ZIP passes dependency inspection and launches successfully.

Non-negotiable gates

  • Release only the approved main commit. Confirm local and remote main match.
  • Preserve unrelated user changes. Use a clean isolated clone when the primary checkout is dirty.
  • In an isolated clone, run npm ci. Never copy or symlink node_modules from another checkout.
  • Use native macOS arm64 Node. Do not release through Rosetta or an x64 Node binary.
  • Run npm run release:beta as one uninterrupted workflow. Do not replace it with individual build, tag, or upload commands.
  • Do not report success from typecheck, signing, notarization, or update-feed checks alone. They do not prove the packaged app can resolve runtime modules.
  • Keep the dedicated CLI parity invariant intact: release only reviewed application behavior from main; do not introduce release-only product behavior.

1. Prepare a real clean checkout

  1. Record the approved commit and verify remote main points to it.

  2. If the active checkout contains staged, unstaged, or untracked user work, leave it untouched and create a temporary clean clone.

  3. Before installing anything, select native arm64 Node and verify it:

    node .agents/skills/release-beta/scripts/verify-release.mjs environment
    

    Ensure npm uses that same Node installation. This check must happen before npm ci; npm selects architecture-specific optional packages during installation.

  4. Install dependencies inside that checkout with npm ci while the arm64 Node installation is first on PATH.

  5. Provide signing credentials through the normal environment or an ignored .env.local. Never commit credentials.

  6. Run the deterministic dependency preflight:

    node .agents/skills/release-beta/scripts/verify-release.mjs preflight
    

The preflight must confirm arm64 Node, a real local node_modules directory, the full locked production/development dependency tree, arm64-native optional packages, and local build binaries. Any failure is blocking.

Read the full file on GitHub · 101 lines

Files

What ships with it

2 files 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. 11d ago First seen · 101 lines · 59 tokens per session scan A 4b9a9fc08b73

Subscribe to this mod's changes

release-beta is a skill published in the GitHub repository juliakrivchikova/AccordAgents-desktop-app (5 stars, last pushed 2d ago), licensed Apache-2.0. It adds 59 tokens to every session and 1,129 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-31.