release

release is a skill for Claude Code, Codex from d-kimuson/claude-code-viewer. It costs 61 tokens per session (1,133 once invoked), scanned A, original, MIT.

A guided process for publishing a new version of the claude-code-viewer software project, from choosing the version number to creating the GitHub release.

In plain words
What is it for?
Use it to release patch, minor, major, beta, or explicitly numbered versions. It also monitors the automated GitHub checks and publishes the finished release.
Why use it?
It removes the need to remember release checks, versioning steps, signed commits, release notes, and build validation.

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

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/d-kimuson/claude-code-viewer/release.svg)](https://agentmods.dev/skills/d-kimuson/claude-code-viewer/release)
Your own site
<a href="https://agentmods.dev/skills/d-kimuson/claude-code-viewer/release"><img src="https://agentmods.dev/badge/skills/d-kimuson/claude-code-viewer/release.svg" alt="Measured on agentmods" height="20"></a>
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,133 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.01133
Opus 5 $0.00030 $0.00566
Sonnet 5 $0.00012 $0.00227
Haiku 4.5 $0.00006 $0.00113

Measured 4d ago against content hash 425a04bc5de0, 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 4d 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 · 146 lines

How it starts

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

claude-code-viewer Release

Use this skill to perform an end-to-end release for this repository.

Inputs

Interpret the user's argument as the release version spec:

  • patch, minor, major, beta
  • or an explicit semver such as 0.8.0 / 0.8.0-beta.0

If no version spec is present, ask the user which one to use.

Preconditions

  1. Work from the repository root.
  2. Inspect the current branch and working tree:
git branch --show-current
git status --short
  1. If there are unrelated uncommitted changes, stop and ask the user how to handle them.
  2. If release-related changes were just made, commit them before running release because scripts/release.ts requires a clean working tree.
  3. The release script requires SSH signing config:
git config --get gpg.format
git config --get commit.gpgsign
git config --get tag.gpgsign

Expected values are ssh, true, true.

Release command

Run the non-interactive release:

VERSION_SPEC="patch" # replace with the user's requested spec
pnpm release -y --version "$VERSION_SPEC"

The script runs gatecheck, Lingui validation, tests, and build checks. It then updates package.json, creates a signed release commit, creates a signed tag, and pushes commits and tags.

If push fails because the branch has no upstream

The release commit and tag may already exist locally. Push the current branch with upstream, then push tags:

BRANCH="$(git branch --show-current)"
git push --set-upstream origin "$BRANCH"
git push --tags

Do not rerun pnpm release unless the local release commit/tag were removed or the previous run failed before creating them.

Monitor GitHub Actions

After tags are pushed, find and watch the Release workflow run:

gh run list --workflow Release --limit 5
RUN_ID="<id from the vX.Y.Z row>"
gh run watch "$RUN_ID" --exit-status

A reusable one-liner variant:

TAG="v0.0.0"; RUN_ID="$(gh run list --workflow Release --limit 20 --json databaseId,headBranch,event --jq ".[] | select(.headBranch == \"$TAG\" and .event == \"push\") | .databaseId" | head -n 1)"; test -n "$RUN_ID" && gh run watch "$RUN_ID" --exit-status

Read the full file on GitHub · 146 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. 4d ago First seen · 146 lines · 61 tokens per session scan A 425a04bc5de0

Subscribe to this mod's changes

release is a skill published in the GitHub repository d-kimuson/claude-code-viewer (1,278 stars, last pushed 16d ago), licensed MIT. It adds 61 tokens to every session and 1,133 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

release

Cut a Symphony release by bumping the committed version, landing it, tagging the merged commit, and verifying the Burrito release workflow. Use when asked to release, tag, or retag Symphony.

openai/symphony · 42 tokens

changelog-entry

Add a new entry to CHANGELOG.yml under the current unreleased version (or create the version block if needed), then regenerate documentation. Use when the user says things like "add a changelog entry", "log this fix in the changelog", or "/changelog-entry".

telepresenceio/telepresence · 60 tokens

release-notes

Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.

phuryn/pm-skills · 57 tokens

mate-oss-gate

在准备把 MateCloud(或其子集)开源 / 发布到公开仓前使用。按 open-core 边界把关:剥离企业代码、清竞品名与内部路径、查密钥、确认 LICENSE。当用户说"要开源了""发布公开版""开源前检查""oss release"时触发。.

mateaix/matecloud · 81 tokens

snapshot-release

Drives the snapshot-release flow for the current branch's PR. Posts a /snapshot comment on the PR if one isn't already there (with confirmation), waits for the Continuous Releases workflow to finish, and reports the tarball URLs from the resulting 📦 Snapshot Release comment. Use for both triggering and waiting …

daangn/seed-design · 142 tokens

devops/changelog-generation

自动生成 CHANGELOG,基于 git 提交历史和 pipeline 产物信息,遵循 Conventional Commits 和 Keep a Changelog 规范.

echoVic/boss-skill · 36 tokens