From remotion-max
Use when creating Remotion video components, animations, or compositions. Triggers on "create a Remotion component", "build a video animation", "generate Remotion code", "make a text reveal", or when working on Remotion projects and needing component scaffolding.
How this skill is triggered — by the user, by Claude, or both
Slash command
/remotion-max:builderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generates Remotion components, animations, and video compositions following best practices from the `remotion-best-practices` skill.
Generates Remotion components, animations, and video compositions following best practices from the remotion-best-practices skill.
# Interactive mode - asks what to build
/remotion-max:builder
# Generate specific component type
/remotion-max:builder text-reveal
/remotion-max:builder fade-transition
/remotion-max:builder video-composition
# Specify output path
/remotion-max:builder --output src/components/MyAnimation.tsx
Arguments received: $ARGUMENTS
remotion-best-practices skill for patternstext-reveal - Animated text revealsfade-in - Fade in transitionsslide-in - Slide transitionsscale-animation - Scale effectsrotation - Rotation animationsvideo-player - Video with controls (trim, speed, volume)audio-sync - Audio-synchronized animationsimage-sequence - Image sequencescaption-display - Caption overlaysvideo-composition - Full video composition structurescene-sequence - Multi-scene setupdynamic-composition - With calculateMetadata/remotion-max:builder text-reveal
Generates:
import {useCurrentFrame, interpolate, spring} from 'remotion';
export const TextReveal: React.FC<{text: string}> = ({text}) => {
const frame = useCurrentFrame();
const opacity = spring({
frame,
fps: 30,
config: {damping: 200}
});
return <div style={{opacity}}>{text}</div>;
};
/remotion-max:builder video-composition
Generates complete composition with:
The command will ask about:
Creates:
This command automatically:
npm start)npm run build)npx claudepluginhub itsdevcoffee/devcoffee-agent-skills --plugin remotion-maxProvides Remotion best practices for video creation in React: animation patterns (useCurrentFrame, interpolate, Easing), proper use of Sequence, staticFile, and media components (Img, Video, Audio). Warns against CSS transitions, Tailwind animations.
Remotion best practices for React video creation: project setup, animation patterns, asset handling, and composition using Sequence.
Guides production of Remotion React videos with Apple-style design rules, covering project setup, constants, animation library, typography, colors, pacing, scenes, 3D, and exports.