storyboard-av-mix

storyboard-av-mix is a skill for Cursor from godot-fun/godot-framework. It costs 103 tokens per session (1,216 once invoked), scanned A, original, MIT.

A tool that combines per-shot storyboard video with Chinese and English voice-over. It adjusts each video shot to match the voice-over duration and writes separate videos for both languages.

In plain words
What is it for?
Use it to create Chinese- and English-narrated storyboard videos from matching shot files and voice-over files.
Why use it?
It removes manual timing and audio replacement work when the narration and video lengths differ. The voice-over remains the timing reference for each shot.

Skill for Cursor

Written for Cursor: installed under .cursor/.

Good fit Use it to create Chinese- and English-narrated storyboard videos from matching shot files and voice-over files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/godot-fun/godot-framework/storyboard-av-mix
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 godot-fun/godot-framework --skill storyboard-av-mix
Clone the repo
git clone --depth 1 https://github.com/godot-fun/godot-framework

Made for: Cursor.

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 storyboard-av-mix

README.md
[![agentmods](https://agentmods.dev/badge/skills/godot-fun/godot-framework/storyboard-av-mix/github.svg)](https://agentmods.dev/skills/godot-fun/godot-framework/storyboard-av-mix)
Your own site
<a href="https://agentmods.dev/skills/godot-fun/godot-framework/storyboard-av-mix"><img src="https://agentmods.dev/badge/skills/godot-fun/godot-framework/storyboard-av-mix/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 storyboard-av-mix

Your own site · 80×15
<a href="https://agentmods.dev/skills/godot-fun/godot-framework/storyboard-av-mix"><img src="https://agentmods.dev/badge/skills/godot-fun/godot-framework/storyboard-av-mix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,216 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 pass 7 Sept 2026
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.00103 $0.01216
Opus 5 $0.00051 $0.00608
Sonnet 5 $0.00021 $0.00243
Haiku 4.5 $0.00010 $0.00122

Measured 12d ago against content hash 0ae04a99d7f6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

storyboard-av-mix 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 12d 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.

.cursor/skills/storyboard-av-mix/SKILL.md · 114 lines

How it starts

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

Storyboard AV Mix

Take a work directory with per-shot video and bilingual VO. For each shot, retime the video to the full VO duration (audio master), drop original video audio, mux, and write language-specific folders.

Input Path
Shot video <root>/Video/<shot-id>.*
Chinese VO <root>/Chinese/<shot-id>.*
English VO <root>/English/<shot-id>.*
Output Path
Chinese mux <root>/Video-Chinese/<shot-id>.<video-ext>
English mux <root>/Video-English/<shot-id>.<video-ext>

Rules

When this skill applies, read and follow skill-dependency-manager �?run scripts as documented, install missing tools into .dependency/.

  1. VO timing is immutable. Never stretch, shrink, pad, trim, or atempo the voice-over. Duration of the VO file is the master clock.
  2. Video serves audio. Only change video duration (FFmpeg setpts) so it equals that shot’s VO length, then mux.
  3. Drop all audio from the source video; replace with the VO track. Prefer -c:a copy; if the container cannot hold the VO codec (e.g. WAV→MP4), encode AAC without changing length.
  4. Do not downgrade video. setpts requires a re-encode, but match the source: codec family (H.265 Main10 when source is 10-bit HEVC), pix_fmt, bitrate, color tags, and HDR side data (mastering display / MaxCLL). Copy container + video-stream metadata from the source clip.
  5. Match shots by filename stem (01.mp4 �?01.wav).
  6. Batch only via .ai/storyboard-av-mix/mix.py �?do not hand-write FFmpeg mux/retime commands.
  7. Never overwrite inputs under Video/, Chinese/, or English/.

Quick Start

From project root:

.dependency/python/python .ai/storyboard-av-mix/mix.py path/to/<root>

Single language:

.dependency/python/python .ai/storyboard-av-mix/mix.py path/to/<root> --lang chinese

Per shot / language the script:

  1. Probes VO duration (source of truth) and video duration
  2. Applies setpts=PTS*(vo_dur/video_dur) �?stretch or compress video only (plus short freeze-tail so video �?VO)
  3. Muxes with -shortest so container duration == VO duration
  4. Writes <root>/Video-Chinese| or Video-English/ / <shot-id>.<same-ext>

Read the full file on GitHub · 114 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. 12d ago First seen · 114 lines · 103 tokens per session scan A 0ae04a99d7f6

Subscribe to this mod's changes

storyboard-av-mix is a skill published in the GitHub repository godot-fun/godot-framework (116 stars, last pushed 12d ago), licensed MIT. It adds 103 tokens to every session and 1,216 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

whisper

Transcribe and translate speech in 99 languages.

NousResearch/hermes-agent · 13 tokens

qwen-mm-plugins-omni-chatcut-video-translation

Translate an existing video's speech and optionally produce a speaker-preserving dubbed video: analyze speech and visible subtitles, author a timed translation plan, synthesize reference-guided voices, replace the vocal track, resume an existing project, or validate a final delivery.

QwenLM/Qwen-MM-Plugins · 64 tokens

seedance-vocab-ru

This skill should be used when the user asks for Russian Seedance 2.0 prompt wording, Russian cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Russian.

Emily2040/seedance-2.0 · 51 tokens

seedance-vocab-es

This skill should be used when the user asks for Spanish Seedance 2.0 prompt wording, Spanish cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Spanish.

Emily2040/seedance-2.0 · 50 tokens

seedance-vocab-ja

This skill should be used when the user asks for Japanese Seedance 2.0 prompt wording, Japanese cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Japanese.

Emily2040/seedance-2.0 · 50 tokens

seedance-vocab-ko

This skill should be used when the user asks for Korean Seedance 2.0 prompt wording, Korean cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Korean.

Emily2040/seedance-2.0 · 50 tokens