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/contextgo/contextgo/remotion-to-hyperframesnpx skills add contextgo/contextgo --skill remotion-to-hyperframesgit clone --depth 1 https://github.com/contextgo/contextgoWhat 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.00268 | $0.01943 |
| Opus 5 | $0.00134 | $0.00971 |
| Sonnet 5 | $0.00054 | $0.00389 |
| Haiku 4.5 | $0.00027 | $0.00194 |
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.
How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Remotion to HyperFrames
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.
Workflow
Step 1: Lint the source
Run scripts/lint_source.py over the Remotion source directory. The lint detects patterns that can't translate cleanly:
- Blockers (refuse + recommend interop):
useState,useReducer,useEffect/useLayoutEffectwith non-empty deps, asynccalculateMetadata, third-party React UI libraries (MUI, Chakra, Mantine, antd, shadcn, Radix, NextUI). - Warnings (translate after dropping the construct):
@remotion/lambdaconfig,delayRender,useCallback,useMemo, custom hooks. - Info (translate with note):
staticFile,interpolateColors.
If any blocker fires, stop. Read references/core/escape-hatch.md and surface the recommendation message. Warnings don't stop translation — drop the offending construct in step 3 and note the gap in TRANSLATION_NOTES.md. @remotion/lambda config is the canonical warning case: the skill drops the import + renderMediaOnLambda(...) calls but translates the rest of the composition.
Step 2: Plan the translation
Read references/core/api-map.md — the index of every Remotion API and its HF equivalent or per-topic reference. Identify which topic references you'll need based on what the source uses:
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 233 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 238 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.6 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 630 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 960 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.3 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/core/api-map.md 12 KB
- references/core/escape-hatch.md 5.3 KB
- references/core/eval.md 5.5 KB
- references/core/limitations.md 4.7 KB
- references/topics/fonts.md 3.2 KB
- references/topics/lottie.md 4.1 KB
- references/topics/media.md 3.8 KB
- references/topics/parameters.md 4.5 KB
- references/topics/sequencing.md 5.0 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 · 102 lines · 268 tokens per session scan A ecad23067654
remotion-to-hyperframes is a skill published in the GitHub repository contextgo/contextgo (54 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 268 tokens to every session and 1,943 once invoked, about $0.0013 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
apple-design
Apple's approach to interface design and fluid, physical motion, translated for the web. Use when building or reviewing gesture-driven UI, spring animations, drag/swipe/sheet interactions, momentum and interruptible transitions, translucent materials and depth, typography (optical sizing, tracking, leading)…
transformers-js
Use Transformers.js to run state-of-the-art machine learning models directly in JavaScript/TypeScript. Supports NLP (text classification, translation, summarization), computer vision (image classification, object detection), audio (speech recognition, audio classification), and multimodal tasks. Works in browsers and…
gemini-live-api-dev
Use this skill when building real-time, bidirectional streaming applications with the Gemini Live API. Covers WebSocket-based audio/video/text streaming, voice activity detection (VAD), native audio features, function calling, session management, ephemeral tokens for client-side auth, live translation, and all Live…
swiftui-expert-skill
Use when writing, reviewing, or refactoring SwiftUI code for iOS or macOS, including state management and @Observable data flow, view composition and invalidation/performance, lists and ForEach identity, environment usage, localization, animations, Liquid Glass adoption, migrating soft-deprecated APIs, or Instruments…
stage-edit
For the VideoStudio EDIT line, the edit decision list lives in project/plan.json and gate-control owns its Gate B authorization transition. Start/resume execution with production.status; do not run trims, assembly, or localization against a changed or unsigned EDL. Runtime status/producedpath updates do not invalidate…
seedance-vocab-ru
This skill should be used when the user asks for Russian Seedance 2.0 prompt wording, Russian cinematic vocabulary, or translation of camera, lighting, action, VFX, audio, and production terms into Russian.