record-demos

record-demos is a skill for Claude Code, Codex from tallesborges/zdx. It costs 109 tokens per session (1,814 once invoked), scanned A, original, MIT.

A recording workflow for capturing a command-line or text-based interface as GIFs, screenshots, or videos using VHS. It stores the recording instructions and generated media in the project so demos can be recreated.

In plain words
What is it for?
Use it to create or regenerate feature clips, screenshots, and videos of the zdx interface for documentation.
Why use it?
It removes the need to record interface demos manually and helps keep README examples consistent when the interface changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create or regenerate feature clips, screenshots, and videos of the zdx interface for documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tallesborges/zdx/record-demos
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.

Any agent
npx skills add tallesborges/zdx --skill record-demos
Clone the repo
git clone --depth 1 https://github.com/tallesborges/zdx

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 record-demos

README.md
[![agentmods](https://agentmods.dev/badge/skills/tallesborges/zdx/record-demos/github.svg)](https://agentmods.dev/skills/tallesborges/zdx/record-demos)
Your own site
<a href="https://agentmods.dev/skills/tallesborges/zdx/record-demos"><img src="https://agentmods.dev/badge/skills/tallesborges/zdx/record-demos/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for record-demos

Your own site · 80×15
<a href="https://agentmods.dev/skills/tallesborges/zdx/record-demos"><img src="https://agentmods.dev/badge/skills/tallesborges/zdx/record-demos.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,814 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 35
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
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.00109 $0.01814
Opus 5 $0.00055 $0.00907
Sonnet 5 $0.00022 $0.00363
Haiku 4.5 $0.00011 $0.00181

Measured 9d ago against content hash 62fb23a59d03, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

record-demos 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 9d 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.

.zdx/skills/record-demos/SKILL.md · 129 lines

How it starts

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

Record zdx demos (VHS)

Record zdx as GIFs / PNGs / MP4 using VHS. Tapes are declarative and deterministic (headless ttyd + ffmpeg, no visible window), so the same .tape regenerates the same clip every time.

Two things, both committed to this repo:

  • Tapes + assets = project content. Feature recordings live in docs/tapes/*.tape and render into docs/assets/*.gif|png, embedded in README.md.
  • This skill = the how. It holds the recipe and gotchas. It contains no GIFs.

Prerequisites (check once)

which vhs ffmpeg || brew install vhs   # vhs pulls in ttyd; ffmpeg needed for gif/mp4

Build a zdx binary to record against:

cargo build -p zdx --bin zdx                 # debug; or: just build-release
BIN_DIR="$(cd target/debug && pwd)"          # release/ for build-release
"$BIN_DIR/zdx" --version                     # sanity check

Critical gotchas (encode these in every tape)

  1. unset NO_COLOR in the hidden setup, before launching zdx. The agent runtime exports NO_COLOR=1, which makes the whole TUI monochrome. This is the #1 mistake — always unset it.
  2. Quote all paths in Output / Screenshot. $ZDX_ARTIFACT_DIR contains --, which breaks VHS's unquoted-path parser.
  3. Put $BIN_DIR on PATH in the hidden setup so zdx resolves as a bare command.
  4. ttyd startup race: an occasional could not open ttyd: ERR_CONNECTION_REFUSED — just re-run the same tape.
  5. Quit the TUI with Ctrl+C twice (or the quit command).
  6. Real turns need a live model call (~40s with Opus [high]). Don't pad the end with a long fixed Sleep — that leaves a "frozen" tail on the final frame. Instead end the turn with Wait+Screen /marker/ (see gotcha 8). Tools run inline (no approval gate in this setup).
  7. Colors show during real turns, not on the launch screen. The empty launch screen is mostly white/gray; diffs (green/red), tool output, syntax highlighting, and the context-% indicator only light up once the agent responds.
  8. End real turns with Wait+Screen /marker/, and the marker must be output-only. Wait+Screen matches anything currently on screen — including your typed prompt, which stays visible in the conversation. So a marker copied from the prompt fires instantly (empty recording). Pick text that appears only after completion — e.g. a distinctive word the model will produce in its answer but that isn't in your prompt, or the turn-summary bar (Wait+Screen@60s /tool ·/). Add a small Sleep 1s after the Wait so the final frame reads.

Read the full file on GitHub · 129 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. 9d ago First seen · 129 lines · 109 tokens per session scan A 62fb23a59d03

Subscribe to this mod's changes

record-demos is a skill published in the GitHub repository tallesborges/zdx (20 stars, last pushed 4d ago), licensed MIT. It adds 109 tokens to every session and 1,814 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

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens