Sandbox
@Alisa0808/vox-director

Agent skill for Vox-style collage videos

This skill turns a single topic into a collage explainer video by moving through beat planning, style selection, image generation, motion, voice, music, and assembly. It uses Atlas Cloud APIs for generation and local `ffmpeg` for the final edit.

1,846 stars285 forksPythonUpdated 1mo ago
Who it's for

Builders who want their coding agent to produce a complete editorial-style video from a topic.

What it delivers

You can go from a one-line topic to a finished `mp4` without stitching the video pipeline together yourself.

What it does

Beat map workflow

The workflow starts by writing a `beats.json` plan, then pauses for you to approve the narrative arc before generation continues.

Style bake-off

It renders the same beat in several collage themes so you can choose the look by eye before committing.

Keyframe generation

Each beat becomes a collage poster, using the image model step as the source of the visual style.

Motion generation

The posters are animated into video, with a local keyframe path available for piece-by-piece motion.

Voice, music, and captions

It adds narration, background music, captions, and watermarking before the final export.

A-roll and C-roll modes

It can restyle a talking-head video or anchor a still photo into the collage workflow instead of only generating from topic text.

How to get it

  1. 1Option A — from this repo
    git clone https://github.com/Alisa0808/vox-director.git ~/.claude/skills/vox-director
  2. 2Then set your Atlas Cloud API key (get one at atlascloud.ai/console/api-keys)
    export ATLASCLOUD_API_KEY="sk-..."

README

English · 简体中文

🎬 Vox Director

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.

License: MIT Powered by Atlas Cloud Agent Skill

https://github.com/user-attachments/assets/ed08d230-7bcb-4b48-a17d-23c079208f9f

▶ "The evolution of Chinese civilization" · 30s

How football conquered the worldMexican street foodA brief history of moneyA brief history of Silicon Valley
Football history · 60sMexican street food · 60sA brief history of money · 60sSilicon Valley history · 60s

▶ more films — click any thumbnail to play


What it is

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.

How it works

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

That flow is B-roll — a topic in, everything generated. Two more input modalities reuse the same engine:

  • A-roll — you already have a talking-head video. It is ASR-segmented into beats and re-styled into the collage look, keeping the real face, lip-sync and gestures frame-for-frame (gemini-omni-flash/video-edit, auto-retrying on seedance-2.0/reference-to-video).
  • C-roll — you have one still photo (a selfie, a product shot). The subject is cut out as a photographic sticker — never redrawn — and each beat's poster is generated around it (nano-banana-2/edit). The narration can be cloned into the subject's own voice.

Two ideas make or break the result, and the skill is built around both:

  1. The look is born in the image step. Each beat is a finished collage poster. All the collage DNA (torn paper, cut-outs, halftone, headline text) lives in that image — if the poster isn't a rich collage, nothing downstream saves it.
  2. The motion is added after. By default an AI video model animates the whole poster (the "living poster" path). For dramatic piece-by-piece assembly, an optional local keyframe engine cuts the poster into parts and drives them frame-by-frame (no content filters, pixel-exact — great for real people).

Two human decision gates keep you in control (approve the beat map; pick the style); everything else is automated.

Models (verified on Atlas Cloud)

JobModel
Keyframe / collage postergoogle/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
Re-style a talking-head (A-roll)google/gemini-omni-flash/video-edit
Anchor a photo in the collage (C-roll)google/nano-banana-2/edit
Narrationxai/tts-v1
Narration in a real person's voicebytedance/seed-audio-1.0 (voice cloning)
Musicminimax/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.

Install

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.mdSKILL.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-..."

Quick start

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.

Requirements

  • A coding agent — Claude Code, Codex, or similar
  • Atlas Cloud API key
  • ffmpeg + ffprobe (brew install ffmpeg)
  • Python 3 with Pillow (pip install pillow) — for caption/watermark overlays

What's in the box

SKILL.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 & 9 theme presets
  beat-layer.md         14 narrative arcs + hook/pacing + shot patterns
  voices.md             xai/tts voice roster — pick a voice_id per language/tone
  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

Credits

Built by @alisaqqt — follow for more agent-skill experiments.

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.

License

MIT © 2026 Alisa Qian

Files in the repo

Repository payload14 top-level entries
  • assets
  • examples
  • references
  • scripts
  • .gitignore
  • AGENTS.md
  • LICENSE
  • llms.txt
  • package.json
  • README.md
  • README.zh.md
  • SKILL.md
  • SKILL.zh.md
  • vox-director.skill

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k