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 commands/altimateai/altimate-code/release-betagit clone --depth 1 https://github.com/AltimateAI/altimate-codeWhat 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 | $0.00065 | $0.02370 |
| Opus 5 | $0.00032 | $0.01185 |
| Sonnet 5 | $0.00013 | $0.00474 |
| Haiku 4.5 | $0.00006 | $0.00237 |
Grade C, and why
release-beta scanned grade C 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 2d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf node_modules && bun install --frozen-lockfile How it starts
The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release altimate-code BETA
Cut a prerelease to the beta npm dist-tag. The whole point: existing
stable (latest) users are never touched. Only people who opted into the
beta channel (npm i -g @altimateai/altimate-code@beta, or a beta install)
receive it. Use this to dogfood a risky release before promoting it to
latest with /release.
Why this is a separate skill (read once)
/releasetags a plainvX.Y.Z→ the workflow publishes tolatest→ every existing user auto-upgrades on next launch. For a big/risky change that is exactly the "brick everyone if there's a bug" risk.- A beta tag has a
-suffix (vX.Y.Z-beta.N)..github/workflows/release.ymlderivesOPENCODE_CHANNELfrom the tag: a-→ thebetachannel →npm publish --tag beta. Thelatestdist-tag is left pointing at the old stable, solatestusers do not move. - The upgrade check (
cli/upgrade.ts) is fail-safe and orders prerelease identifiers, so a beta tester onbeta.1auto-upgrades tobeta.2, and any beta upgrades to the eventual stable. This is verified by the round-trip below.
Input
$ARGUMENTS = the target STABLE version this beta leads to (patch | minor |
major, or an explicit X.Y.Z). Default minor — a big upstream merge is not
a patch. The beta tag becomes vX.Y.Z-beta.N.
Step 1 — Determine the beta version
# current published STABLE (the latest dist-tag)
npm view @altimateai/altimate-code dist-tags --json
- Base stable
X.Y.Zfrom$ARGUMENTS:patch/empty → not typical for a beta; preferminor.minor→ bump minor of the current stable (0.8.10 → 0.9.0).major→ 0.8.10 → 1.0.0.- explicit
X.Y.Z→ use it.
- Find the next
-beta.N: look at the currentbetadist-tag. If it is alreadyX.Y.Z-beta.M, next isbeta.(M+1); otherwise start atbeta.1.
# does a beta for this base already exist?
npm view @altimateai/altimate-code@beta version 2>/dev/null || echo "no beta yet"
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.
- 2d ago First seen · 192 lines · 65 tokens per session scan C a9f45bdaa4ba
release-beta is a command published in the GitHub repository AltimateAI/altimate-code (803 stars, last pushed 2d ago), licensed MIT. It adds 65 tokens to every session and 2,370 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
MIGRATE_DESIGN
Design doc for the migration tool PR. Author: Sol ([email protected]). Co-authored-by: wakesync.
awesome-chatgpt
Search awesome-ChatGPT-repositories for open-source GitHub repositories related to ChatGPT and LLMs.
agentlas-cloud
Staff a task only from the signed-in owner's Agent Cloud agents.
review-epo-claims
Analyze patent claims for EPO Art. 84 EPC compliance - clarity, conciseness, support by description.
commit
智能生成 Git 提交信息并提交.
webapp-testing
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.