Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Remotion Best Practices

A domain-knowledge hub that routes Claude to 28 topic-specific rule files for building videos with Remotion in React.

Image & VideoIntermediate17719AI 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
  • calculateMetadata for 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

  1. "Add TikTok-style captions synced to this audio track" → pulls transcribe-captions.md and display-captions.md to generate word-level highlighting.
  2. "Set durationInFrames automatically from the uploaded mp4" → applies get-video-duration.md plus calculate-metadata.md.
  3. "Make the scene change smoother with spring easing" → consults timing.md and transitions.md to 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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/Karanjot786/agent-skills-cli.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the whole skill directory so the rule files come along: cp -r agent-skills-cli/.agent/skills/remotion-best-practices ~/.claude/skills/
  5. Verify with ls ~/.claude/skills/remotion-best-practices/rules — you should see the individual .md rule files.
  6. Restart Claude Code and ask something like "build a Remotion caption component"; the skill will be referenced automatically.