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.
npx agentmods add skills/heygen-com/hyperframes/remotion-to-hyperframesnpx skills add heygen-com/hyperframes --skill remotion-to-hyperframesgit clone --depth 1 https://github.com/heygen-com/hyperframesWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00084 | $0.02262 |
| Opus 5 | $0.00042 | $0.01131 |
| Sonnet 5 | $0.00017 | $0.00452 |
| Haiku 4.5 | $0.00008 | $0.00226 |
Grade A, and why
remotion-to-hyperframes 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 2d 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.
Copies of this mod
3 near-identical copies found in the catalogue:
- remotion-to-hyperframes — 86% identical, 33 lines differ
- remotion-to-hyperframes — 78% identical, 15 lines differ
- remotion-to-hyperframes — 78% identical, 15 lines differ
How it starts
The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.
First, keep this skill fresh — confirm with the user before running:
npx hyperframes skills update remotion-to-hyperframes. A fast no-op when everything is current; otherwise it refreshes this skill plus the core domain skills it depends on before you rely on them.
Remotion to HyperFrames
The front door is
/hyperframes. Use this only to port an existing Remotion (React) composition's source into HyperFrames, one way. Authoring a new composition, re-creating from a non-Remotion source (After Effects, Framer Motion, plain React / CSS — there is no Remotion source to translate), a passing Remotion mention, or any uncertainty → read/hyperframesfirst: the intent layer owns every route decision.
Overview
Translate Remotion (React-based) video compositions into HyperFrames (HTML + GSAP) compositions. Most Remotion idioms have direct HyperFrames equivalents — the translation is mechanical for ~80% of typical compositions. This skill encodes the mapping and guards against the lossy 20% by refusing to translate patterns that don't fit HF's seek-driven model and recommending the runtime interop pattern from PR #214 instead.
The skill ships with a tiered test corpus (T1–T4, 4 fixtures total) that grades translations against measured SSIM thresholds. Don't translate without running the eval — a translation that "looks right" but renders 0.05 SSIM lower than the validated baseline is silently wrong.
When to use
Use this skill ONLY when the user explicitly asks to migrate from Remotion. Example trigger phrases:
- "port my Remotion project to HyperFrames"
- "convert this Remotion code to HyperFrames"
- "migrate from Remotion"
- "translate this Remotion comp"
- "rewrite this as HyperFrames HTML"
Do NOT use this skill when:
- (a) The user is authoring a new HyperFrames composition, even if they have or are A/B-testing a similar Remotion video.
- (b) The user mentions Remotion in passing without asking for migration.
- (c) The user shares Remotion code as reference material rather than asking for a translation.
- (d) The user asks for "the same video as my Remotion one" without explicitly asking to migrate the source — treat that as a fresh HyperFrames build.
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/.gitkeep 0 B
- assets/test-corpus/.gitignore 16 B
- assets/test-corpus/run.sh 8.2 KB runs code
- assets/test-corpus/tier-1-title-card/.gitignore 128 B
- assets/test-corpus/tier-1-title-card/expected.json 1.7 KB
- assets/test-corpus/tier-1-title-card/hf-src/index.html 1.8 KB
- assets/test-corpus/tier-1-title-card/README.md 2.2 KB
- assets/test-corpus/tier-1-title-card/remotion-src/package.json 296 B
- assets/test-corpus/tier-1-title-card/remotion-src/remotion.config.ts 497 B runs code
- assets/test-corpus/tier-1-title-card/remotion-src/src/index.ts 109 B runs code
- assets/test-corpus/tier-1-title-card/remotion-src/src/Root.tsx 259 B
- assets/test-corpus/tier-1-title-card/remotion-src/src/TitleCard.tsx 773 B
- assets/test-corpus/tier-1-title-card/remotion-src/tsconfig.json 337 B
- assets/test-corpus/tier-2-multi-scene/.gitignore 215 B
- assets/test-corpus/tier-2-multi-scene/expected.json 2.0 KB
- assets/test-corpus/tier-2-multi-scene/hf-src/index.html 3.7 KB
- assets/test-corpus/tier-2-multi-scene/README.md 3.1 KB
- assets/test-corpus/tier-2-multi-scene/remotion-src/package.json 298 B
- assets/test-corpus/tier-2-multi-scene/remotion-src/remotion.config.ts 497 B runs code
- assets/test-corpus/tier-2-multi-scene/remotion-src/src/index.ts 109 B runs code
- assets/test-corpus/tier-2-multi-scene/remotion-src/src/MultiScene.tsx 2.3 KB
- assets/test-corpus/tier-2-multi-scene/remotion-src/src/Root.tsx 264 B
- assets/test-corpus/tier-2-multi-scene/remotion-src/tsconfig.json 337 B
- assets/test-corpus/tier-2-multi-scene/setup.sh 1.2 KB runs code
- assets/test-corpus/tier-3-data-driven/.gitignore 128 B
- assets/test-corpus/tier-3-data-driven/expected.json 3.4 KB
- assets/test-corpus/tier-3-data-driven/hf-src/index.html 8.9 KB
- assets/test-corpus/tier-3-data-driven/README.md 4.9 KB
- assets/test-corpus/tier-3-data-driven/remotion-src/package.json 319 B
- assets/test-corpus/tier-3-data-driven/remotion-src/remotion.config.ts 497 B runs code
- assets/test-corpus/tier-3-data-driven/remotion-src/src/components/AnimatedNumber.tsx 740 B
- assets/test-corpus/tier-3-data-driven/remotion-src/src/components/StatCard.tsx 1.4 KB
- assets/test-corpus/tier-3-data-driven/remotion-src/src/components/UnderlinedText.tsx 1.1 KB
- assets/test-corpus/tier-3-data-driven/remotion-src/src/index.ts 109 B runs code
- assets/test-corpus/tier-3-data-driven/remotion-src/src/Root.tsx 681 B
- assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/OutroScene.tsx 423 B
- assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/StatsScene.tsx 676 B
- assets/test-corpus/tier-3-data-driven/remotion-src/src/scenes/TitleScene.tsx 1.2 KB
- assets/test-corpus/tier-3-data-driven/remotion-src/src/Stargazed.tsx 970 B
- assets/test-corpus/tier-3-data-driven/remotion-src/tsconfig.json 337 B
- assets/test-corpus/tier-4-escape-hatch/cases/01-use-state.tsx 1000 B
- assets/test-corpus/tier-4-escape-hatch/cases/02-use-effect-deps.tsx 954 B
- assets/test-corpus/tier-4-escape-hatch/cases/03-async-metadata.tsx 1.1 KB
- assets/test-corpus/tier-4-escape-hatch/cases/04-third-party-react.tsx 1.2 KB
- assets/test-corpus/tier-4-escape-hatch/cases/05-lambda-config.tsx 1.4 KB
- assets/test-corpus/tier-4-escape-hatch/cases/06-warnings-only.tsx 1.4 KB
- assets/test-corpus/tier-4-escape-hatch/cases/07-custom-hook.tsx 1.1 KB
- assets/test-corpus/tier-4-escape-hatch/cases/08-mixed.tsx 1.1 KB
- assets/test-corpus/tier-4-escape-hatch/expected.json 2.7 KB
- assets/test-corpus/tier-4-escape-hatch/README.md 2.8 KB
- assets/test-corpus/tier-4-escape-hatch/validate.sh 3.5 KB runs code
- references/api-map.md 12 KB
- references/escape-hatch.md 5.3 KB
- references/eval.md 5.5 KB
- references/fonts.md 3.2 KB
- references/limitations.md 4.8 KB
- references/lottie.md 4.2 KB
- references/media.md 3.8 KB
- references/parameters.md 4.5 KB
- references/sequencing.md 5.3 KB
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.
- 2d ago First seen · 130 lines · 84 tokens per session scan A d19ed15fa329
remotion-to-hyperframes is a skill published in the GitHub repository heygen-com/hyperframes (43,141 stars, last pushed 2d ago), licensed Apache-2.0. It adds 84 tokens to every session and 2,262 once invoked, about $0.0004 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.
Other skills, from other repositories
stage-edit
Intelligent editing of real user-supplied footage—understand it with transcript/OCR/scene/silence/quality/vision evidence, then choose deterministic timeline operations or a constrained semantic AI edit. Trigger for repurpose, montage, cleanup, localization, narration, or local content changes.
videohub-story-editor
把长视频或已有字幕转成有完整叙事的几分钟短片。先基于原文字幕和画面证据理解、选段与重排,再对最终时间轴重新翻译和可选润色;既可输出保留原声的双语字幕版,也可把原声降到 30% 并用 MiniMax 或豆包 TTS 生成影视解说、短剧混剪、播客串讲或知识解读版。已有项目可进入本地五轨时间线继续调整切点、旁白、原声窗口、字幕、音量和转场,并按修订版本渲染。用于“把长视频讲成短故事”“按字幕自动剪辑”“剪好后再翻译”“制作 TTS 解说版”“可视化精修”“生成抖音发布文件夹和文案”等任务。.
frame-data-chart-nyt
NYT-newsroom typography, staggered reveal animation, and editorial-grade charts (line, bar, or range band).
videohub-youtube
处理 YouTube、Twitter(X)、Bilibili 和本地音视频/文本的转写、字幕、翻译与总结。优先复用 src/youtubetranscriber.py 现有 CLI。.
rebuild-site
Rebuild a whole landing page / multi-section website from a screen recording that scrolls or walks through it. Use when the user has a recording of an ENTIRE page (not a single animation) and wants the full page recreated — layout, sections, copy, design system, and scroll animations. Orchestrates analyze (measured…
recreate
Recreate an analyzed animation as working web code — GSAP (JavaScript), CSS/Web Animations, Framer Motion (React), or Lottie/SVG. Use after /motiscope:analyze, or when the user asks to "build/recreate this animation in ". Reads the motiscope animation spec and emits a runnable component.