by Alisa0808
Turn one topic into a finished Vox-style paper-collage explainer/ad video — automated end to end on Atlas Cloud + ffmpeg. An agent skill.
# Add to your Claude Code skills
git clone https://github.com/Alisa0808/vox-directorvox-director is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Alisa0808. Turn one topic into a finished Vox-style paper-collage explainer/ad video — automated end to end on Atlas Cloud + ffmpeg. An agent skill. It has 69 GitHub stars.
vox-director's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/Alisa0808/vox-director" and add it to your Claude Code skills directory (see the Installation section above). vox-director ships a SKILL.md manifest, so compatible agents can discover and load it automatically.
vox-director is primarily written in Python. It is open-source under Alisa0808 on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh vox-director against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
Turn a one-line topic into a finished Vox-style paper-collage video: a bold, punchy, narrated explainer/ad where each beat is a torn-paper collage poster that comes alive, with voice-over, music and captions. Runs on one Atlas Cloud API key + local ffmpeg.
The look is the modern editorial paper-collage popularized by Vox explainers and creators like Stav Zilber / rom1trs: hand-cut paper cut-outs, torn edges, tape, halftone dots, newspaper clippings, bold flat color per beat, big cut-out headlines.
The Vox collage look and the collage motion are two different steps:
Everything hinges on the prompts. Before writing any image or video prompt, read
references/prompt-guide.md — it has the exact prompt structures that make the difference
between "a real Vox collage" and "a moving PowerPoint".
echo "${ATLASCLOUD_API_KEY:+set}" — if empty, tell the user to set it (get one at
https://www.atlascloud.ai/console/api-keys) and stop.command -v ffmpeg ffprobe — required for assembly (brew install ffmpeg on macOS).python3 -c "import PIL" — Pillow, for captions/watermark overlays.This is the default, most-automated path. Every stage is one script, all driven by a single
beats.json per project under out/<project>/.
Topic → beat map. First read references/beat-layer.md (the story layer) and pick a
narrative arc that fits the topic (timeline for history, pas/bab for ads,
how_it_works for explainers, man_in_hole for transformations, …). Then write
out/<project>/beats.json following that arc: beat-1 headline must be a ≤3s hook; beat
count per duration (30s→6–8, 60s→10–12); split each beat into 2 shots (wide+detail) with
per-shot camera_move VARIED across adjacent beats (never repeat; static on the payoff)
and rich element_motion (see step 4). Each beat: narration, title_cn/title_en,
scene, bg, feel, hook. This draft is the one mandatory approval gate — show the
user the beat map before generating. Examples in examples/.
Pick the visual style (hybrid — do this BEFORE keyframes). Do not reuse one house style
for every topic. Read references/prompt-guide.md (§5 theme presets); pick 3–4 theme presets
(styles.THEME_PRESETS: american-retro, swiss-modern, punk-zine,
soviet-constructivist, wpa-propaganda, 70s-groovy, chinese-ink, atomic-age) that fit
the topic's era/culture/tone — or compose a custom theme by mixing the prompt-guide dimensions
(medium/era/palette/type/finish) when none fit. Match the topic, not the language (an
English film on Chinese history should look Chinese). A theme bundles the whole LOOK layer
(idiom+palette+type+finish+mood+motion). Run a bake-off and let the user pick by eye — AI
proposes, the library is the quality floor, the human decides. Set the pick as "theme":
python3 scripts/style_bakeoff.py out/<project> american-retro,swiss-modern,punk-zine,atomic-age
Set the chosen name as "collage_style" in beats.json (keyframes.py reads it).
Keyframes (the collage look). python3 scripts/keyframes.py out/<project>
Generates one collage poster per beat/shot with google/nano-banana-2/text-to-image,
headline text baked in. Compose prompts with the 5-part structure in
references/prompt-guide.md. Verify each poster looks like a real layered collage
before animating — re-roll cheap ($0.08) here rather than paying to animate a weak image.
Motion. python3 scripts/clips.py out/<project>
Animates each poster with google/gemini-omni-flash/image-to-video. Two independent axes
(see references/beat-layer.md §3, tested on our stack):
• camera_move — ONE move per shot. Safe/default: {static, push_in, pull_out, pan, tilt, parallax}. Bold/experimental {orbit, dolly_zoom, roll, whip} are available, not
banned — they can warp the flat art, so pair with constraints: loose and re-roll.
Any custom phrase also passes through.
• element_motion — where the energy lives; AI writes it per beat to fit that scene (not a
template). Make it RICH (several elements moving) — be bold. A hero element flying across
the frame (paper bird/plane/coins) is a great occasional punch on a key beat, not
every shot (a flyer in every frame reads as a formula).
motion_style = amplitude calm | punchy | max (the theme sets a default). constraints
= strict (default: defect guards on — flat-2D, one-way, no-morph; best for clean text-heavy
explainers) or loose (let the model explore 3D/bold moves; re-roll the misses). Headline
text is hard-protected only on shots that have a title (detail shots without a headline are
free to go wild). For real people / brand logos, Omni & Seedance refuse — set
"video_model": "kwaivgi/kling-video-o3-pro/image-to-video".
Voice + music. python3 scripts/audio.py out/<project>
One consistent narrator via xai/tts-v1 (multilingual, voice_id) + instrumental BGM
via minimax/music-2.6. (Do NOT use seed-audio for plain narration unless you pin a
speaker — see gotchas.)
Assemble. python3 scripts/assemble.py out/<project>
ffmpeg: normalize + concat all shots, lay the single narration ducked under the music,
burn captions timed per beat, add the watermark. Output out/<project>/final.mp4.
Verify. You can't read an mp4 directly — extract frames to jpg and look:
ffmpeg -ss <t> -i final.mp4 -vf "scale=640:-1,format=yuvj420p" -frames:v 1 f.jpg
A common mistake is one long shot per beat. On a 9:16 / social piece especially, a static 10s shot reads as dead air. Aim for a cut every ~4–6 seconds:
a; generate a tighter detail scene for shot b.
keyframes.py skips any shot that already has a keyframe_url, so adding b shots and
re-running only generates the new ones.Add a shots array to each beat (see schema). Give each shot its own short scene and
motion; set "title": true only on the wide shot so the headline shows once per beat.
{
"project": "my-film", "topic": "...", "language": "en",
"aspect": "9:16", // 16:9 | 9:16 | 1:1 | 3:4
"style": "collage",
"provider": "atlas_cloud", // media backend — default; pluggable (scripts/provider.py)
"theme": "american-retro", // THEME_PRESET (styles.THEME_PRESETS) — the LOOK layer
"arc": "timeline", // narrative arc (beat-layer.md) — the STORY skeleton
"video_model": "google/gemini-omni-flash/image-to-video", // Kling for real people
"motion_style": "punchy", // amplitude: calm | punchy | max (theme sets a default)
"constraints": "strict", // strict = defect guards on | loose = let AI explore + re-roll
"voice": {"voice_id": "leo", "language": "en", "speed": 1.0},
"music": "epic cinematic orchestral, instrumental, no vocals",
"mix": {"music": 0.6, "voice": 1.25}, // audio balance — optional; these are the defaults (BGM ducks under the VO)
"watermark": "Made with Atlas Cloud",
"beats": [
{
"id": 1, "title_cn": "", "title_en": "BEFORE MONEY",
"bg": "earthy clay tan", "feel": "ancient, humble", "hook": "surprising_stat",
"narration": "For most of history, there was no money...",
"shots": [
// shot_size: EST_WIDE|WIDE|MEDIUM|CLOSE|DETAIL ; camera_move: static|push_in|
// pull_out|pan|tilt|parallax (flat-safe only) — VARY per adjacent beat, static for payoff
{"id": "a", "dur": 5, "title": true, "shot_size": "WIDE", "camera_move": "push_in",
"scene": "...wide establishing collage...",
"element_motion": "traders gesture, goat bobs, a paper bird flaps across the frame, coins scatter"},
{"id": "b", "dur": 5, "title": false, "shot_size": "CLOSE", "camera_move": "parallax",
"scene": "...close cut-in detail...",
"element_motion": "the exchanged goods slide together, halftone pulses"}
]
}
]
}
theme+arc set the two big layers; element_motion per shot is the energy (make it rich — see
below). motion/collage_style/era are still read for back-compat.
Model IDs change — fetch the live list first: GET https://api.atlascloud.ai/api/v1/models
(no auth; keep only display_console: true). Defaults that work today:
| Job | Model | Note |
|---|---|---|
| Keyframe / collage poster | google/nano-banana-2/text-to-image |
renders CN+EN text well |
| Cut out an element | youchuan/v8.1/remove-background |
advanced path only |
| Animate (non-real content) | google/gemini-omni-flash/image-to-video |
keeps text stable, layered motion |
| Animate (real people / brands) | kwaivgi/kling-video-o3-pro/image-to-video |
Omni & Seedance BLOCK celebrities |
| Narration | xai/tts-v1 |
clean, multilingual, voice_id |
| Music | minimax/music-2.6 |
is_instrumental: true |
See references/models-and-gotchas.md for the full model-choice reasoning and every
API / ffmpeg gotcha (auth header, curl downloads, no-libass captions, content blocks, etc.).
Read it before debugging any failure — most failures are already documented there.
Backends are pluggable. Every API call goes through a provider (scripts/provider.py);
Atlas Cloud is the default and only backend today. Set "provider" in beats.json to route to a
different backend once one is added — the stage scripts don't change. scripts/provider.py's
run_jobs() also does the submit/poll with auto-resubmit on a stalled or failed job.
The standard path animates the whole poster (great, automated, "living poster"). For the dramatic pieces-fly-in-and-assemble motion collage (à la cr7v2), or to animate real people with full control and zero content filters, cut each poster into independent elements and drive them with the local keyframe engine (no video model needed).
Read references/local-engine.md. In short: extract_elements.py (crop + background-removal
motion.py (Layer + keyframes, fly_in/slap/drop/pop_settle
easings, procedural confetti/starburst, camera zoom+shake+whip, frame render). Pieces fly
back to their original positions on a blurred-placeholder backdrop, so the assembled
frame reconstructs the original poster.Turn one topic into a finished Vox-style paper-collage explainer / ad video — script, collage keyframes, motion, voice-over, music and captions, all automated.
An agent skill that runs end to end on the Atlas Cloud API + local ffmpeg, usable by any coding agent (Claude Code, Codex, etc.). You give it a one-line topic; it gives you an mp4.
https://github.com/user-attachments/assets/561788b1-5615-4828-b3f8-b24ae5ad7bcd
https://github.com/user-attachments/assets/ed08d230-7bcb-4b48-a17d-23c079208f9f
https://github.com/user-attachments/assets/f69f072f-f50a-41ba-9e66-7ed0aae4ddc0
The look is the modern editorial paper-collage popularized by Vox explainers: hand-cut paper cut-outs, torn edges, tape, halftone dots, newspaper clippings, bold flat color per beat, big cut-out headlines — brought to life with motion, a narrator, music and captions.
One topic flows through one script per stage, all driven by a single beats.json per project:
topic
│
├─ 1. beat map pick a narrative arc → write beats.json ◀── GATE 1: you approve the beat map
├─ 2. style bake-off render the same beat in 3–4 themes ◀── GATE 2: you pick the look by eye
├─ 3. keyframes one collage poster per beat (nano-banana-2)
├─ 4. motion animate each poster (gemini-omni-flash i2v)
├─ 5. voice + music one narrator (xai/tts) + BGM (minimax/music)
├─ 6. assemble ffmpeg: concat, duck music under VO, burn captions + watermark
└─ final.mp4
Two ideas make or break the result, and the skill is built around both:
Two human decision gates keep you in control (approve the beat map; pick the style); everything else is automated.
| Job | Model |
|---|---|
| Keyframe / collage poster | google/nano-banana-2/text-to-image |
| Animate (non-real content) | google/gemini-omni-flash/image-to-video |
| Animate (real people / brands) | kwaivgi/kling-video-o3-pro/image-to-video |
| Narration | xai/tts-v1 |
| Music | minimax/music-2.6 |
| Cut out an element (advanced path) | youchuan/v8.1/remove-background |
Model IDs drift — the skill fetches the live list from GET https://api.atlascloud.ai/api/v1/models before running.
This is an agent skill — it works with any coding agent that can read a workflow and run scripts (Claude Code, Codex, …). Claude Code auto-discovers it as a skill; other agents read AGENTS.md → SKILL.md.
Option A — from this repo:
git clone https://github.com/Alisa0808/vox-director.git ~/.claude/skills/vox-director
Option B — from the packaged skill: download vox-director.skill and install it via your Claude skills UI.
Then set your Atlas Cloud API key (get one at atlascloud.ai/console/api-keys):
export ATLASCLOUD_API_KEY="sk-..."
Just ask your coding agent, with the skill installed:
"Make me a Vox-style collage video introducing Mexican street food — English, 16:9, 15 seconds."
The agent will draft a beat map for your approval, run a style bake-off for you to pick from, then generate keyframes → motion → voice → music and assemble out/<project>/final.mp4.
brew install ffmpeg)pip install pillow) — for caption/watermark overlaysSKILL.md the skill (English) — the workflow the agent follows
SKILL.zh.md the same skill in Chinese
AGENTS.md entry point for non-Claude agents (Codex, …)
references/ the creative engine
prompt-guide.md the LOOK layer — prompt structures, vocab & 8 theme presets
beat-layer.md 14 narrative arcs + hook/pacing + shot patterns
models-and-gotchas.md every API / ffmpeg gotcha, already solved
local-engine.md the advanced element-level motion engine
scripts/ one script per pipeline stage
examples/ ready-to-run beats.json examples
assets/ the showcase film
Inspired by the collage-ad workflows of Stav Zilber, rom1trs and Higgsfield, and by Vox's explainer visual language.
Built end to end on Atlas Cloud — one prompt, one film.
MIT © 2026 Atlas Cloud