Remotion Best Practices
A domain-knowledge hub that routes Claude to 28 topic-specific rule files for building videos with Remotion in React.
Image & VideoIntermediate★ 177⑂ 19AI score 6/10Last updated: May 17, 2026
What it does
Gives Claude Remotion-specific knowledge whenever you work on React video code. The SKILL.md body acts as a table of contents; detailed explanations and code samples live in 28 files under rules/.
- Animation fundamentals, timing curves (
interpolate,spring), transitions, trimming, sequencing - Embedding images, videos, audio, fonts, GIFs and Lottie files
- Caption workflows: importing .srt, transcribing audio, TikTok-style word highlighting
- Mediabunny helpers for video/audio duration, dimensions, frame extraction, decode checks
calculateMetadatafor dynamic duration/size/props, TailwindCSS, text & DOM measurement, charts, Three.js 3D
Who it's for
- React developers generating ads, short-form social clips or data videos with Remotion
- Anyone tired of Claude hallucinating Remotion component APIs
- Teams that want one shared set of patterns for captions, audio and transitions
Examples
- "Add TikTok-style captions synced to this audio track" → pulls
transcribe-captions.mdanddisplay-captions.mdto generate word-level highlighting. - "Set durationInFrames automatically from the uploaded mp4" → applies
get-video-duration.mdpluscalculate-metadata.md. - "Make the scene change smoother with spring easing" → consults
timing.mdandtransitions.mdto rewrite the transition component.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Karanjot786/agent-skills-cli/HEAD/.agent/skills/remotion-best-practices/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .agent/skills/remotion-best-practices folder from the GitHub repo Karanjot786/agent-skills-cli into my ~/.claude/skills/remotion-best-practices/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Karanjot786/agent-skills-cli.git /tmp/agent-skills-cli && mkdir -p ~/.claude/skills && cp -r /tmp/agent-skills-cli/.agent/skills/remotion-best-practices ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/Karanjot786/agent-skills-cli.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the whole skill directory so the rule files come along:
cp -r agent-skills-cli/.agent/skills/remotion-best-practices ~/.claude/skills/ - Verify with
ls ~/.claude/skills/remotion-best-practices/rules— you should see the individual .md rule files. - Restart Claude Code and ask something like "build a Remotion caption component"; the skill will be referenced automatically.
View source on GitHub ↗License: MIT