release

release is a skill for Claude Code, Codex from tandryukha/aidemo. It costs 162 tokens per session (805 once invoked), scanned A, original, MIT.

A release workflow for an aidemo project that updates the package version, commits it, and pushes it to the main branch. Continuous integration then creates the version tag and publishes the GitHub release.

In plain words
What is it for?
Use it to cut patch, minor, or major releases, run required checks, push the version change, and watch the automated release process.
Why use it?
It documents the release steps and checks that the working tree and type checks are clean first. This helps avoid publishing from unfinished or inconsistent code.

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

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/tandryukha/aidemo/release.svg)](https://agentmods.dev/skills/tandryukha/aidemo/release)
Your own site
<a href="https://agentmods.dev/skills/tandryukha/aidemo/release"><img src="https://agentmods.dev/badge/skills/tandryukha/aidemo/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 162 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 805 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.00162 $0.00805
Opus 5 $0.00081 $0.00402
Sonnet 5 $0.00032 $0.00161
Haiku 4.5 $0.00016 $0.00081

Measured 4d ago against content hash 027ad246cac9, 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.

.claude/skills/release/SKILL.md · 78 lines

How it starts

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

release — bump + push, CI does the tagging

Your job: cut a release safely. RELEASING.md is the authoritative runbook — if it contradicts this skill, it wins. Be terse; surface only failures + final status.

Phases

  1. Preflight — clean tree, green smoke:

    git status --porcelain        # must be empty
    npm run typecheck
    

    For engine changes since the last tag, run the verify skill (fixture e2e) before releasing.

  2. Bump (version lives in one place — package.json):

    npm version patch --no-git-tag-version    # or minor / major
    git commit -asm "release: v$(node -p "require('./package.json').version")"
    
  3. Push — this is the ship step: once CI sees the version bump on main, the release goes out. Make sure the user actually wants a release cut (a routine end-of-session push must NOT include a version bump):

    git push origin main
    
  4. Watch CI do the restrelease.yml creates vX.Y.Z, moves stable, publishes the Release (only when the version actually changed):

    gh run watch --exit-status "$(gh run list --workflow=release.yml -L1 --json databaseId -q '.[0].databaseId')"
    gh release view "v$(node -p "require('./package.json').version")"
    
  5. Manual fallback (CI unavailable) — from RELEASING.md:

    v=vX.Y.Z
    git tag -a "$v" -m "$v" && git push origin "$v"
    git tag -f stable && git push -f origin stable
    gh release create "$v" --generate-notes
    

Gotchas

  • CI is idempotent: an existing vX.Y.Z tag is skipped, but stable still moves and the Release is still created.
  • Workflow permission failures → Settings → Actions → General → Workflow permissions → Read and write.
  • Consumers on npx ...#stable may keep resolving the old commit from the npm cache right after stable moves — npx --prefer-online force-freshens; pin #vX.Y.Z for determinism.
  • Commits must be signed off (-s) like everything else in this repo (DCO).

Read the full file on GitHub · 78 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 · 78 lines · 162 tokens per session scan A 027ad246cac9

Subscribe to this mod's changes

release is a skill published in the GitHub repository tandryukha/aidemo (5 stars, last pushed today), licensed MIT. It adds 162 tokens to every session and 805 once invoked, about $0.0008 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.

Related

Other skills, from other repositories

demo-video

Produce a polished, ScreenStudio-style 60fps product demo video of a web app with a tiny, dependency-light pipeline — Playwright frame capture + a multiprocess Pillow compositor streaming into ffmpeg (no Node/Remotion). Drives the app one step per frame so playback is true 60fps regardless of capture speed, then…

surajshetty3416/demo-video-skill · 181 tokens

motion-graphics

Build frame-exact motion graphics — animated logos, kinetic typography, brand videos, animated titles and social clips — as a single HTML file driven by a paused Web Animations timeline, then export them to MP4 in 1:1, 4:5 and 9:16. Use this whenever someone wants to animate a wordmark or logo, make a video from text…

acelera-agency/html-animation · 188 tokens

product-demo

Shoot, animate, title and optionally score product demo videos with Remotion — for a landing page, docs, onboarding, an app store listing or a social post. Use when editing anything under src/compositions/, when the user asks for a new demo clip, an intro or an animated title, asks for sound or a version for social…

Alexwtlf/agentic-product-demo · 97 tokens

record-extension-demo

Record a polished demo video of a Chrome extension with Diorama. Use when asked to create, update, or re-record an extension demo, produce Chrome Web Store assets, or turn an extension feature into a video.

daniel-ddtech/diorama · 47 tokens

creador_videos_ai

Build a 30-second cinematic marketing video for any website URL using the Causal AI Digital pipeline (Playwright iframe scroll tour + ElevenLabs voice off + whisper.cpp word-level synced subtitles + FFmpeg audio mux). Use when the user asks to generate a promotional/marketing video for a website, create a cinematic…

jnichor/creador_videos_ai · 160 tokens

playwright-dev

Explains how to develop Playwright - add APIs, MCP tools, CLI commands, and vendor dependencies.

microsoft/playwright · 25 tokens