Move per-command examples from the centralized `help.ts` record into each command file as `export const examples: Example[]`. help.ts now dynamically imports them at --help time. This means adding a new command and its examples happens in one file instead of two, reducing the chance of forgetting examples. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9.7 KiB
Hyperframes
Skills — USE THESE FIRST
This repo ships skills that are installed globally via npx hyperframes skills (runs automatically during hyperframes init). Always use the appropriate skill instead of writing code from scratch or fetching external docs.
HyperFrames Skills (from this repo)
| Skill | Invoke with | When to use |
|---|---|---|
| hyperframes-compose | /hyperframes-compose |
Creating ANY HTML composition — videos, animations, title cards, overlays. Contains required HTML structure, class="clip" rules, GSAP timeline patterns, and rendering constraints. |
| hyperframes-captions | /hyperframes-captions |
Any task involving text synced to audio: captions, subtitles, lyrics, lyric videos, karaoke. Also covers transcription strategy (whisper model selection, transcript format). |
| hyperframes-tts | /hyperframes-tts |
Generating speech from text: narration, voiceovers, text-to-speech. Voice selection, speed control, and combining TTS output with compositions. |
| marker-highlight | /marker-highlight |
Animated text highlighting — marker sweeps, hand-drawn circles, burst lines, scribble, sketchout. Use with captions for dynamic emphasis. |
GSAP Skills (from greensock/gsap-skills)
| Skill | Invoke with | When to use |
|---|---|---|
| gsap-core | /gsap-core |
gsap.to(), from(), fromTo(), easing, duration, stagger, defaults |
| gsap-timeline | /gsap-timeline |
Timeline sequencing, position parameter, labels, nesting, playback |
| gsap-performance | /gsap-performance |
Performance best practices — transforms over layout props, will-change, batching |
| gsap-plugins | /gsap-plugins |
ScrollTrigger, Flip, Draggable, SplitText, and other GSAP plugins |
| gsap-scrolltrigger | /gsap-scrolltrigger |
Scroll-linked animations, pinning, scrub, triggers |
| gsap-utils | /gsap-utils |
gsap.utils helpers — clamp, mapRange, snap, toArray, wrap, pipe |
Why this matters
The skills encode HyperFrames-specific patterns (e.g., required class="clip" on all timed elements, GSAP timeline registration via window.__GSAP_TIMELINE, data-* attribute semantics) that are NOT in generic web docs. Skipping the skills and writing from scratch will produce broken compositions.
Rules
- When creating or modifying HTML compositions → invoke
/hyperframes-composeBEFORE writing any code - When adding captions, subtitles, lyrics, or any text synced to audio → invoke
/hyperframes-captionsBEFORE writing any code - When transcribing audio or choosing a whisper model → invoke
/hyperframes-captionsBEFORE running any transcription tool - When generating speech from text (narration, voiceover, TTS) → invoke
/hyperframes-ttsBEFORE running any TTS command - When creating a video from audio (music video, lyric video, audio visualizer with text) → invoke BOTH
/hyperframes-composeAND/hyperframes-captions - When writing GSAP animations → invoke
/gsap-coreand/gsap-timelineBEFORE writing any code - When optimizing animation performance → invoke
/gsap-performanceBEFORE making changes - When adding animated text emphasis (highlight sweeps, circles, bursts, scribbles) → invoke
/marker-highlightBEFORE writing any code - After creating or editing any
.htmlcomposition → runnpx hyperframes lintandnpx hyperframes validatein parallel, fix all errors before opening the studio or considering the task complete.lintchecks the HTML structure statically;validateloads the composition in headless Chrome and catches runtime JS errors, missing assets, and failed network requests. Always validate beforenpx hyperframes preview.
Installing skills
npx skills add heygen-com/hyperframes # HyperFrames skills
npx skills add greensock/gsap-skills # GSAP skills
Uses vercel-labs/skills. Installs to Claude Code, Gemini CLI, and Codex CLI by default. Pass -a <agent> for other targets.
Project Overview
Open-source video rendering framework: write HTML, render video.
packages/
cli/ → hyperframes CLI (create, preview, lint, render)
core/ → Types, parsers, generators, linter, runtime, frame adapters
engine/ → Seekable page-to-video capture engine (Puppeteer + FFmpeg)
producer/ → Full rendering pipeline (capture + encode + audio mix)
studio/ → Browser-based composition editor UI
Development
pnpm install # Install dependencies
pnpm build # Build all packages
pnpm test # Run tests
Linting & Formatting
This project uses oxlint and oxfmt (not biome, not eslint, not prettier).
bunx oxlint <files> # Lint
bunx oxfmt <files> # Format (write)
bunx oxfmt --check <files> # Format (check only, used by pre-commit hook)
Always run both on changed files before committing. The lefthook pre-commit hook runs bunx oxlint and bunx oxfmt --check automatically.
Adding CLI Commands
When adding a new CLI command:
- Define the command in
packages/cli/src/commands/<name>.tsusingdefineCommandfrom citty - Export
examplesin the same file —export const examples: Example[] = [...](importExamplefrom./_examples.js). These are displayed by--help. - Register it in
packages/cli/src/cli.tsundersubCommands(lazy-loaded) - Validate by running
npx tsx packages/cli/src/cli.ts <name> --helpand verifying the examples section appears
Key Concepts
- Compositions are HTML files with
data-*attributes defining timeline, tracks, and media - Frame Adapters bridge animation runtimes (GSAP, Lottie, CSS) to the capture engine
- Producer orchestrates capture → encode → audio mix into final MP4
- BeginFrame rendering uses
HeadlessExperimental.beginFramefor deterministic frame capture
Transcription
HyperFrames uses word-level timestamps for captions. The hyperframes transcribe command handles both transcription and format conversion.
Quick reference
# Transcribe audio/video (local whisper.cpp, no API key)
npx hyperframes transcribe audio.mp3
npx hyperframes transcribe video.mp4 --model medium.en --language en
# Import existing transcript from another tool
npx hyperframes transcribe subtitles.srt
npx hyperframes transcribe subtitles.vtt
npx hyperframes transcribe openai-response.json
Whisper models
Default is small.en. Upgrade for better accuracy:
| Model | Size | Use case |
|---|---|---|
tiny |
75 MB | Quick testing |
base |
142 MB | Short clips, clear audio |
small |
466 MB | Default — most content |
medium |
1.5 GB | Important content, noisy audio |
large-v3 |
3.1 GB | Production quality |
Only use .en suffix when you know the audio is English. .en models translate non-English audio into English instead of transcribing it.
Supported transcript formats
The CLI auto-detects and normalizes: whisper.cpp JSON, OpenAI Whisper API JSON, SRT, VTT, and pre-normalized [{text, start, end}] arrays.
Improving transcription quality
If captions are inaccurate (wrong words, bad timing):
- Upgrade the model:
--model medium.enor--model large-v3 - Set language:
--language ento filter non-target speech - Use an external API: Transcribe via OpenAI or Groq Whisper API, then import the JSON with
hyperframes transcribe response.json
See the /hyperframes-captions skill for full details on model selection and API usage.
Text-to-Speech
Generate speech audio locally using Kokoro-82M (no API key, runs on CPU). Useful for adding voiceovers to compositions.
Quick reference
# Generate speech from text
npx hyperframes tts "Welcome to HyperFrames"
# Choose a voice and output path
npx hyperframes tts "Hello world" --voice am_adam --output narration.wav
# Read text from a file
npx hyperframes tts script.txt --voice bf_emma
# Adjust speech speed
npx hyperframes tts "Fast narration" --speed 1.2
# List available voices
npx hyperframes tts --list
Voices
Default voice is af_heart. The model ships with 54 voices across 8 languages:
| Voice ID | Name | Language | Gender |
|---|---|---|---|
af_heart |
Heart | en-US | Female |
af_nova |
Nova | en-US | Female |
am_adam |
Adam | en-US | Male |
am_michael |
Michael | en-US | Male |
bf_emma |
Emma | en-GB | Female |
bm_george |
George | en-GB | Male |
Use npx hyperframes tts --list for the full set, or pass any valid Kokoro voice ID.
Requirements
- Python 3.8+ (auto-installs
kokoro-onnxpackage on first run) - Model downloads automatically on first use (~311 MB model + ~27 MB voices, cached in
~/.cache/hyperframes/tts/)