Agent skill · Content & Marketing

remotion-markup

Content, animation and effects best practices

guanyanggithub.com/guanyangGitHub ↗
claude-codeships scriptsMIT
Install
npx skills add guanyang/open-agent-hub --skill remotion-markup --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 67
SKILL.md size: 11 KB
Bundled scripts: yes
Version: 4.0.505
Path: skills/remotion-markup/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 940
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

This is guidance for writing Remotion React Markup. If this is not relevant, load [Remotion Best Practices](../remotion-best-practices/SKILL.md) instead. ## General rules Drive animations using `useCurrentFrame()` and `interpolate()`. CSS `transition` or `animation` will not render correctly, they need to refactored. Tailwind animation class will not render correctly, they need to be refactored. Use `Easing.bezier()` and `Easing.spring()` to customize timing. Structure your markup according to [Remotion Interactivity Best Practices](../remotion-interactivity/SKILL.md) ```tsx import { useCurrentFrame, Easing, interpolate, Interactive } from "remotion"; export const FadeIn = () => { const frame = useCurrentFrame(); return ( <Interactive.Div name="Title" style={{ opacity: interpolate(frame, [0, 2 * fps], [0, 1], { extrapolateRight: "clamp", extrapolateLeft: "clamp", easing: Easing.bezier(0.16, 1, 0.3, 1), }), }} > Hello World! </Interactive.Div> ); }; ``` Keep the `interpolate()` call inline in the `style` prop. Use `scale`, `translate`, `rotate` CSS properties over `transform`. ```tsx // 👍 Inline editable keyframes and transform shorthands style={{ scale: interpolate(frame, [0, 100]

What's inside
Steps it walks through
  1. General rules
  2. Assets
  3. Media components
  4. Example scene
  5. Delaying, trimming
  6. from
  7. durationInFrames
  8. trimBefore
  9. Fallback
  10. Maps
  11. Text highlights and annotations
  12. Multi-scene videos
  13. Voiceover
  14. Embedding Videos
Ships with 24 files
  • 3d.md
  • agents/openai.yaml
  • assets/remotion-icon.png
  • audio-visualization.md
  • audio.md
  • calculate-metadata.md
  • compositions.md
  • cropping.md
  • effects.md
  • embedding-videos.md
  • ffmpeg.md
  • gifs.md
  • google-fonts.md
  • html-in-canvas.md
  • images.md
  • light-leaks.md
  • local-fonts.md
  • lottie.md
  • map.md
  • mapbox.md
  • maplibre.md
  • measuring-dom-nodes.md
  • measuring-text.md
  • multi-scene-video.md
first 24 of 67
Commands it runs
npx remotion still [composition-id] --scale=0.25 --frame=30
More from open-agent-hub
All skills →
About this skill
What does the remotion-markup skill do?

Content, animation and effects best practices

How do I install it?

Run `npx skills add guanyang/open-agent-hub --skill remotion-markup --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From guanyang/open-agent-hub, a repository with 940 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going