skills/remotion-video/SKILL.md
Create motion graphics and videos using Remotion (React) with audio sync, web fonts, and TailwindCSS. Triggers on: "create a Remotion video", "React video", "motion graphics", "branded video", "product demo video", "video with voiceover". NOT for math animations, use concept-to-video.
npx skillsauth add mathews-tom/armory remotion-videoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Creates production-grade videos using Remotion — a React framework where video is code. Every frame is a React component. Animations use spring physics and frame-based interpolation.
| File | Purpose |
| --------------------------------------- | ---------------------------------------------------------------- |
| references/rules/fundamentals.md | useCurrentFrame, useVideoConfig, interpolate, spring, core hooks |
| references/rules/animations.md | Easing, spring config, interpolateColors, timing patterns |
| references/rules/compositions.md | Composition, registerRoot, Folder, calculateMetadata |
| references/rules/media.md | Img, Video, OffthreadVideo, Audio, staticFile, async loading |
| references/rules/text-and-fonts.md | Google Fonts, local fonts, text measurement, typography |
| references/rules/tailwind.md | TailwindCSS integration, utility-first styling in Remotion |
| references/rules/audio.md | Audio component, volume curves, trimming, frame-synced audio |
| references/rules/subtitles.md | Caption system, SRT/VTT parsing, word-level timing |
| references/rules/three-d.md | @remotion/three, ThreeCanvas, React Three Fiber integration |
| references/rules/charts.md | Bar, pie, line chart animation patterns |
| references/rules/rendering.md | CLI render, renderMedia API, quality presets |
| references/rules/data-driven.md | Dataset rendering, batch generation, parametric compositions |
| references/templates/explainer.tsx | Parametric tech explainer template |
| references/templates/product-demo.tsx | Product showcase template |
| references/templates/data-viz.tsx | Animated chart composition template |
| scripts/scaffold_project.sh | Bootstrap a new Remotion project with TailwindCSS |
| scripts/render.sh | Render wrapper with quality presets and format options |
Remotion treats video as a React application. Each frame is a pure function of time — given frame N and total frames F, your component renders deterministically. This means:
spring() gives natural motion without hand-tweaking cubic beziers..tsx file IS the editable intermediate.Scaffold → Compose → Preview → Iterate → Render
npm run dev)scripts/render.shNode.js 18+ is required. Check before scaffolding:
node --version # Must be >= 18.0.0
npm --version
If Node.js is not available, inform the user — Remotion cannot run without it.
Run scripts/scaffold_project.sh to create a new Remotion project. The script is idempotent — it detects an existing project and skips re-initialization.
bash scripts/scaffold_project.sh my-video-project
cd my-video-project
npm run dev # Opens Remotion Studio at localhost:3000
Determine the best approach. Read the relevant rule file for detailed patterns.
| Content type | Rule file | Template | | ----------------------------------- | ----------------------- | ---------------- | | Explainer / educational | fundamentals.md | explainer.tsx | | Product demo / marketing | animations.md | product-demo.tsx | | Data visualization / animated chart | charts.md | data-viz.tsx | | Video with voiceover / narration | audio.md + subtitles.md | explainer.tsx | | Social media clip (short, looping) | animations.md | product-demo.tsx | | 3D scene / abstract motion graphics | three-d.md | (custom) | | Personalized / batch generation | data-driven.md | any | | Video with embedded media | media.md | any |
Core rules for writing Remotion components:
registerRoot points to one root composition.<Sequence from={30} durationInFrames={60}> to place scenes at specific frames.<AbsoluteFill> as the base for any full-screen element.useCurrentFrame(). Never use Date.now() or setTimeout.spring({ frame, fps }) for natural motion.import {
useCurrentFrame,
useVideoConfig,
interpolate,
spring,
AbsoluteFill,
Sequence,
} from "remotion";
type MySceneProps = {
title: string;
accentColor: string;
};
export const MyScene: React.FC<MySceneProps> = ({ title, accentColor }) => {
const frame = useCurrentFrame();
const { fps, durationInFrames } = useVideoConfig();
const opacity = interpolate(frame, [0, 30], [0, 1], {
extrapolateRight: "clamp",
});
const scale = spring({ frame, fps, config: { damping: 12, stiffness: 100 } });
return (
<AbsoluteFill style={{ backgroundColor: "#0a0a0a" }}>
<div
style={{ opacity, transform: `scale(${scale})`, color: accentColor }}
>
{title}
</div>
</AbsoluteFill>
);
};
Remotion Studio provides hot-reload preview. Start it with:
npm run dev
Studio opens at http://localhost:3000. The timeline scrubber lets you inspect any frame.
Use <Still> component for frame-accurate screenshots during iteration.
| Request | Action |
| ---------------------- | ----------------------------------------------------------------- |
| "Slower/faster" | Adjust durationInFrames on <Sequence> or change FPS |
| "Different color" | Update props passed to composition |
| "Add a section" | Add new <Sequence> block with incremented from offset |
| "Change font" | Load via @remotion/google-fonts, apply as CSS fontFamily |
| "Add background music" | Add <Audio src={staticFile('audio.mp3')} /> to root composition |
| "Make it loop" | Set durationInFrames and design matching first/last frame state |
| "Add captions" | See subtitles.md for SRT parsing and word-level timing |
Use scripts/render.sh to render the final video:
bash scripts/render.sh --composition MyComposition --quality final --format mp4
| Preset | Resolution | FPS | Use case |
| --------- | ---------- | --- | --------------------- |
| preview | 480p | 15 | Fast layout check |
| draft | 720p | 30 | Client draft review |
| final | 1080p | 30 | Standard delivery |
| 4k | 2160p | 60 | Presentation / cinema |
| Format | Use case |
| ------ | -------------------------------- |
| mp4 | Standard delivery (H.264) |
| webm | Web-optimized |
| gif | Embeddable in docs, social media |
| Error | Cause | Resolution |
| ------------------------------- | --------------------------------------- | ------------------------------------------------------------------------------ |
| node: command not found | Node.js not installed | Install Node.js 18+ from nodejs.org |
| Cannot find module 'remotion' | Dependencies not installed | Run npm install in the project directory |
| Composition not found | Wrong composition ID | Check registerRoot and <Composition id= match |
| delayRender timed out | Async asset load > 30s | Increase timeout via delayRender('reason', { timeoutInMilliseconds: 60000 }) |
| OffthreadVideo failed | Video codec not supported | Convert to H.264 MP4 with ffmpeg first |
| ENOMEM during render | Out of memory on large compositions | Reduce --concurrency flag, or lower resolution |
| Port 3000 already in use | Another dev server running | Kill existing process or set --port 3001 |
| Spring animation goes past 1.0 | Missing { extrapolateRight: 'clamp' } | Add extrapolation clamp to interpolate calls |
| Fonts not loading in render | Font not loaded before render starts | Use @remotion/google-fonts or delayRender for font face load |
npx remotion render command downloads it automatically, but it requires ~300MB disk space.@remotion/lambda is deferred to a future skill version. Local rendering only.<Sequence> blocks. Each scene is its own component.spring() gives physically accurate motion. Only use interpolate with easing when spring doesn't fit.z.infer<typeof schema> (Zod) or explicit interfaces.For mathematical animations, algorithm visualizations, or when Node.js is unavailable, use concept-to-video (Manim/Python) instead. Manim runs in any Python environment and excels at geometric proofs, equation animations, and LaTeX rendering.
testing
Create, review, and restyle data visualizations using Edward Tufte principles: high data-ink ratio, direct labels, range-frame axes, small multiples, accessible color, responsive charts, and honest comparisons. Triggers on: "create a chart", "style this chart", "review this graph", "Tufte chart", "data visualization", "Recharts", "Plotly", "matplotlib", "Chart.js", "ECharts", "D3". Use when generating or critiquing charts, dashboards, sparklines, and data tables.
testing
Manages dependent branch stacks and stacked pull requests using safe Git topology rules. Triggers on: "create stacked PRs", "publish this stack", "sync my PR stack", "rebase this stack", "merge the stack", "retarget child PRs", "split this branch into stacked PRs", "validate this stack", "cleanup stacked branches". Use when local branches or one source branch need to become a dependency-ordered PR stack with correct parent bases, validation, synchronization, merge order, and cleanup.
development
Scaffolds per-repository agent context so coding agents share the same issue tracker rules, triage label vocabulary, domain glossary, ADR layout, and handoff conventions. Triggers on: "set up project context", "configure agent docs", "create CONTEXT.md", "setup agent workflow", "agent issue tracker setup", "triage labels", "domain glossary for agents". Use when a repo needs durable context files before planning, triage, debugging, TDD, architecture review, or multi-agent implementation.
testing
Produces phased task boards from feature requests: dependency-mapped work items, parallelization flags, risk flags, edge cases, test matrices. Triggers on: "decompose this feature", "task breakdown with dependencies", "phased implementation plan", "work breakdown structure". NOT for effort estimates, use estimate-calibrator.