Getting Started
August 26, 2026 · View on GitHub
This guide will help you create your first video using the claude-code-video-toolkit.
Prerequisites
Minimum (renders videos immediately)
- Node.js 18+ — that's it
Optional: AI Voiceover
| Provider | Cost | Setup |
|---|---|---|
| Qwen3-TTS | Free (self-hosted) | RunPod account + uv run tools/qwen3_tts.py --setup |
| ElevenLabs | Pay-per-use | API key in .env |
Optional: Full Toolkit
- Python 3.9+ — for audio tools, image editing, upscaling
- FFmpeg — for media conversion and compression
- RunPod account — for cloud GPU processing (TTS, image editing, watermark removal, talking heads)
- ElevenLabs API key — for premium AI voices
Your First Video in 2 Minutes
cd examples/hello-world
npm install
npm run studio # Preview in browser
npm run render # Export MP4
No API keys needed. Edit src/config/sprint-config.ts to customize content.
Full Setup (for AI Tools)
This is optional — you can render videos with just Node.js installed.
-
Clone the repository
git clone https://github.com/digitalsamba/claude-code-video-toolkit.git cd claude-code-video-toolkit -
Install Python dependencies with uv
# Install uv if you don't have it: # macOS/Linux: curl -LsSf https://astral.sh/uv/install.sh | sh # Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex" uv syncThis creates
.venv/and installs every locked dependency in one step — no manual virtualenv or pip required. Run any Python tool through the environment withuv run tools/<tool>.py(no activation needed). Optional extras:uv sync --extra whisper # burned karaoke captions (heavy, pulls in torch) uv sync --extra modal # Modal CLI for self-hosted cloud GPU -
Start Claude Code and run the setup wizard
claudeThen type
/setup— this walks you through configuring cloud GPU, file transfer, and voice in about 5 minutes. Most features are free:- Cloudflare R2: Free (10GB storage, zero egress)
- Modal: $30/month free compute on Starter plan
- Qwen3-TTS: Free AI voiceovers (runs on your Modal compute)
Or configure manually:
cp .env.example .envand edit with your API keys.
Optional: Codex Setup
If you use Codex instead of Claude Code, install the toolkit's Codex-compatible wrappers and regenerate AGENTS.md from CLAUDE.md:
uv run scripts/migrate_to_codex.py --force
This installs toolkit skills into ~/.codex/skills and appends or updates a generated Codex block in the repository root AGENTS.md.
Resources created or updated by the migration script:
- Toolkit skills under
~/.codex/skills/ - Command-wrapper skills under
~/.codex/skills/ - A generated Codex block inside repository root
AGENTS.md
Important:
- The script manages only a generated block inside the repository root
AGENTS.md. - Manual
AGENTS.mdcontent outside that block is preserved. - The generated block is derived from
CLAUDE.md. - Re-run
uv run scripts/migrate_to_codex.py --forceafter updatingCLAUDE.md.
To remove the installed toolkit skills later:
uv run scripts/migrate_to_codex.py --reset
--reset removes the generated Codex block from AGENTS.md, but does not remove the rest of the file.
Optional: Kiro CLI Setup
If you use Kiro CLI instead of Claude Code, install the toolkit's Kiro-compatible skills and command wrappers:
uv run scripts/migrate_to_kiro.py --force
This installs the toolkit skills and slash-command wrappers into ~/.kiro/skills and generates .kiro/steering/video-toolkit.md from CLAUDE.md. /video, /setup, etc. then work as Kiro slash commands from any directory. See docs/kiro.md for details, and re-run with --force after CLAUDE.md changes. To remove:
uv run scripts/migrate_to_kiro.py --reset
Your First Video
The easiest way to create a video is using the /video command:
/video
This unified command will:
- Scan for existing projects (or start fresh if none found)
- Let you choose a template (Sprint Review or Product Demo)
- Let you choose a brand (or create one with
/brand) - Gather your content (paste notes, provide URLs, or describe what you want)
- Plan scenes interactively with your input
- Create a project in
projects/with all scaffolding ready
Manual Project Creation
If you prefer manual setup:
-
Copy a template
cp -r templates/sprint-review projects/my-video cd projects/my-video npm install -
Edit the config Edit
src/config/sprint-config.tswith your content. -
Add demo videos Place
.mp4files inpublic/demos/ -
Preview
npm run studio -
Render
npm run render
Available Commands
| Command | Description |
|---|---|
/setup | First-time setup - cloud GPU, file transfer, voice, prerequisites |
/video | Video projects - list, resume, or create new |
/scene-review | Scene-by-scene review in Remotion Studio |
/design | Focused design refinement session for a scene |
/brand | Brand profiles - list, edit, or create new |
/template | List available templates or create new ones |
/record-demo | Record browser interactions with Playwright |
/generate-voiceover | Generate AI voiceover from script (supports per-scene mode) |
/redub | Redub existing video with a different voice |
/skills | List installed skills or create new ones |
/contribute | Share improvements - issues, PRs, examples |
/versions | Check dependency versions and toolkit updates |
Project Structure
After creating a project, you'll have:
projects/my-video/
├── project.json # Project state (phase, scenes, assets)
├── CLAUDE.md # Auto-generated status for Claude Code
├── VOICEOVER-SCRIPT.md # Narration script with asset markers
├── src/
│ ├── config/
│ │ ├── sprint-config.ts # Your video content (or demo-config.ts)
│ │ ├── brand.ts # Brand colors/fonts (auto-generated)
│ │ └── theme.ts
│ └── components/
├── public/
│ ├── demos/ # Your demo videos
│ ├── audio/ # Voiceovers, music, SFX
│ └── images/ # Logo, screenshots
└── package.json
Multi-Session Workflow
Projects can span multiple Claude Code sessions. The /video command tracks progress:
/video
When you have existing projects, you'll see:
Found 2 video projects:
1. **my-release-video** (sprint-review)
Phase: assets - 2/5 demos recorded
Last worked: 2 days ago
2. **product-launch** (product-demo)
Phase: audio - voiceover needed
Last worked: 5 days ago
Which project? (or 'new' for a new project)
Project Phases
| Phase | Description |
|---|---|
planning | Defining scenes, writing script |
assets | Recording demos, gathering materials |
review | Scene-by-scene review in Remotion Studio (/scene-review) |
audio | Generating voiceover, music |
editing | Adjusting timing, previewing |
rendering | Final render in progress |
complete | Done |
Next Steps
- Creating Templates - Build custom video structures
- Creating Brands - Define visual identity