clawbox-release-publish

clawbox-release-publish is a skill for Codex from CommonstackAI/ClawBox. It costs 92 tokens per session (987 once invoked), scanned A, original, MIT.

A release procedure for the ClawBox desktop application. It uses the UTC date and existing tags to choose a version, update project files, validate the release, and publish a matching Git tag.

In plain words
What is it for?
It is for preparing, validating, versioning, tagging, and publishing ClawBox releases, including writing release notes when requested.
Why use it?
Desktop releases require the same version in several files and must follow a consistent tagging process. This procedure reduces mismatches and helps the release workflow create a GitHub Release.

Skill for Codex

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

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

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 clawbox-release-publish

README.md
[![agentmods](https://agentmods.dev/badge/skills/commonstackai/clawbox/clawbox-release-publish.svg)](https://agentmods.dev/skills/commonstackai/clawbox/clawbox-release-publish)
Your own site
<a href="https://agentmods.dev/skills/commonstackai/clawbox/clawbox-release-publish"><img src="https://agentmods.dev/badge/skills/commonstackai/clawbox/clawbox-release-publish.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 987 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.1 $0.00092 $0.00987
Opus 5 $0.00046 $0.00494
Sonnet 5 $0.00018 $0.00197
Haiku 4.5 $0.00009 $0.00099

Measured 6d ago against content hash 4985572c7389, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

clawbox-release-publish 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 6d 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/clawbox-release-publish/SKILL.md · 88 lines

How it starts

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

ClawBox Release Publish

Use this skill to run the current ClawBox release process end to end.

Read first

  • docs/releasing.md
  • .github/release-notes-template.md
  • docs/releases/
  • package.json
  • scripts/release-version.mjs
  • scripts/sync-version.mjs
  • .github/workflows/release.yml
  • git status --short --branch

If the user also asks to create the commit or push the branch/tag, read .agents/skills/clawbox-git-commit-push/SKILL.md.

Workflow

  1. Inspect the worktree before starting. Stop if unrelated dirty changes would be mixed into the release.
  2. Fetch tags with git fetch --tags before generating a version. The UTC day sequence is based on local tags.
  3. Run npm run release:version. This updates package.json, package-lock.json, src-tauri/tauri.conf.json, and src-tauri/Cargo.toml.
  4. Read back the selected version with node -p "require('./package.json').version" and use that exact value for the release commit and tag.
  5. If the user wants curated release notes, copy .github/release-notes-template.md to docs/releases/v<version>.md and fill it in before the release commit. If that file is missing, GitHub falls back to auto-generated notes.
  6. Run the standard release validation set unless the user explicitly scopes it down:
    • npm run scan:repo
    • npm run audit:licenses
    • npm run audit:deps
    • npm run build:frontend
    • npm run build:backend
    • cargo check --manifest-path src-tauri/Cargo.toml
  7. If the user wants the release prepared but not published, stop after reporting the version, changed files, release notes status, and validation status.
  8. If the user wants the release published, create a focused commit for the release files, create tag v<version>, push the branch, then push the tag.

Expected commands

Prepare the next release version:

git fetch --tags
npm run release:version

Validate the release:

npm run scan:repo
npm run audit:licenses
npm run audit:deps
npm run build:frontend
npm run build:backend
cargo check --manifest-path src-tauri/Cargo.toml

Read the full file on GitHub · 88 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. 6d ago First seen · 88 lines · 92 tokens per session scan A 4985572c7389

Subscribe to this mod's changes

clawbox-release-publish is a skill published in the GitHub repository CommonstackAI/ClawBox (22 stars, last pushed 4mo ago), licensed MIT. It adds 92 tokens to every session and 987 once invoked, about $0.0005 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

changelog-generation

Changelog generation skill for ZeroClaw releases. Use this skill when the user wants to generate a changelog, prepare release notes, or summarize what changed between versions. Trigger on: 'generate changelog', 'changelog for v0.7.x', 'prepare release notes', 'what changed since ', 'write the changelog'…

zeroclaw-labs/zeroclaw · 87 tokens

ship

Ship workflow: detect + merge base branch, run tests, review diff, bump VERSION, update CHANGELOG, commit, push, and create a PR. Use for an explicit /ship invocation or when the user requests the full ship, release, or deploy workflow. For an ordinary commit, push, or pull-request publishing request, use the built-in…

GCWing/BitFun · 88 tokens

release-publish

Publish a new AlphaClaw release to npm and GitHub. Use when the user asks to cut a release, publish a version, write release notes, draft a release tweet, or close issues addressed in a release. Covers git history analysis, release note drafting, npm publishing, GitHub release creation, issue closing, and tweet…

chrysb/alphaclaw · 72 tokens

release-analysis

Analyze an upstream product, dependency, or platform release for downstream impact on the current repo. Use when the user gives a package or repo name such as openclaw or GOG-CLI, or asks about release notes, changelogs, tags, dependency bumps, or upstream announcements. Resolve the GitHub repository, read the latest…

chrysb/alphaclaw · 114 tokens

release-openclaw-maintainer

Prepare or verify OpenClaw stable, beta, and extended-stable releases, including backport discovery, changelogs, release notes, publish commands, and artifacts.

openclaw/openclaw · 41 tokens

release-openclaw-ci

Run, watch, debug, and summarize OpenClaw full release CI, release checks, live provider gates, install/update proofs, and release-secret preflights.

openclaw/openclaw · 39 tokens