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 skills/tandryukha/aidemo/releasenpx skills add tandryukha/aidemo --skill releasegit clone --depth 1 https://github.com/tandryukha/aidemoWrote 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.
[](https://agentmods.dev/skills/tandryukha/aidemo/release)<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>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.
| Model | Per session | Once 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 |
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.
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
-
Preflight — clean tree, green smoke:
git status --porcelain # must be empty npm run typecheckFor engine changes since the last tag, run the
verifyskill (fixture e2e) before releasing. -
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")" -
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 -
Watch CI do the rest —
release.ymlcreatesvX.Y.Z, movesstable, 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")" -
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.Ztag is skipped, butstablestill moves and the Release is still created. - Workflow permission failures → Settings → Actions → General → Workflow permissions → Read and write.
- Consumers on
npx ...#stablemay keep resolving the old commit from the npm cache right afterstablemoves —npx --prefer-onlineforce-freshens; pin#vX.Y.Zfor determinism. - Commits must be signed off (
-s) like everything else in this repo (DCO).
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.
- 4d ago First seen · 78 lines · 162 tokens per session scan A 027ad246cac9
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.
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…
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…
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…
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.
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…
playwright-dev
Explains how to develop Playwright - add APIs, MCP tools, CLI commands, and vendor dependencies.