Create Remotion videos styled with Vercel's Geist design system - dark backgrounds, spring animations, Geist fonts, and the 10-step color scale.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioncreate-remotion-geistExecute the skills CLI command in your project's root directory to begin installation:
Fetches create-remotion-geist from vercel-labs/skill-remotion-geist and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate create-remotion-geist. Access via /create-remotion-geist in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
20
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
20
stars
Create Remotion videos styled with Vercel's Geist design system - dark backgrounds, spring animations, Geist fonts, and the 10-step color scale.
@geist-ui/icons packagesrc/index.tsx with registerRoot(), not .tsScaffold the project:
mkdir -p src/{scenes,components,utils} out
npm init -y
npm install remotion @remotion/cli @remotion/tailwind react react-dom
npm install -D tailwindcss typescript @types/react
npm install @geist-ui/icons # For proper icons
Create core files (see references/project-setup.md for templates):
remotion.config.ts - Enable Tailwindtailwind.config.js - Geist colors and fontssrc/styles.css - Font loading from CDNsrc/index.tsx - Root composition with registerRoot()src/Root.tsx - Composition definitionssrc/utils/animations.ts - Spring animationsBuild scenes following the pattern in references/scene-patterns.md
Render:
npx remotion studio # Preview at localhost:3000
npx remotion render MyComp out/video.mp4
| Token | CSS Variable | Value | Usage |
|---|---|---|---|
| background-100 | --ds-background-100 | #0a0a0a | Primary background |
| background-200 | --ds-background-200 | #171717 | Secondary/elevated |
| gray-400 | --ds-gray-400 | #737373 | Default borders |
| green-700 | --ds-green-700 | #46A758 | Success |
| red-700 | --ds-red-700 | #E5484D | Error |
| amber-700 | --ds-amber-700 | #FFB224 | Warning |
| blue-700 | --ds-blue-700 | #0070F3 | Info/accent |
text-heading-{72|64|56|48|40|32|24|20|16|14} (semibold, tight tracking)text-label-{20|18|16|14|13|12}[-mono] (normal weight)text-copy-{24|20|18|16|14|13}[-mono] (normal weight)space-2: 8px | space-4: 16px | space-6: 24px | space-8: 32pxUse spring-based animations for Geist's smooth aesthetic:
import { spring, interpolate } from 'remotion';
// Fade in with delay
export function fadeIn(frame: number, fps: number, delay = 0, duration = 0.4) {
const delayFrames = delay * fps;
const durationFrames = duration * fps;
return interpolate(frame, [delayFrames, delayFrames + durationFrames], [0, 1],
{ extrapolateLeft: 'clamp', extrapolateRight: 'clamp' });
}
// Spring scale
export function springIn(frame: number, fps: number, delay = 0) {
return spring({ frame: frame - delay * fps, fps, config: { damping: 200 } });
}
export function MyScene() {
const frame = useCurrentFrame();
const { fps } = useVideoConfig();
const titleOpacity = fadeIn(frame, fps, 0, 0.4);
const titleScale = springIn(frame, fps, 0);
return (
<AbsoluteFill className="bg-background-100 flex flex-col items-center justify-center">
<h2 style={{ opacity: titleOpacity, transform: `scale(${titleScale})` }}>
Title
</h2>
</AbsoluteFill>
);
}
@geist-ui/icons (e.g., import { Code, Folder, Check } from '@geist-ui/icons')references/project-setup.md - Complete file templatesreferences/geist-icons.md - Icons and brand assets (MUST READ)references/code-blocks.md - Syntax-highlighted code blocks (use prism-react-renderer)references/geist-colors.md - Full 10-step color scalereferences/geist-typography.md - All typography classes with specsreferences/geist-components.md - Component props and patternsreferences/scene-patterns.md - Scene templates for common contentreferences/storyboard-template.md - Planning video structure@font-face {
font-family: 'Geist';
src: url('https://cdn.jsdelivr.net/npm/[email protected]/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2');
font-weight: 400;
}
/* Add Medium (500), SemiBold (600), Bold (700) weights */
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
remotion-dev/skills
davila7/claude-code-templates
supercent-io/skills-template
shreefentsar/remotion-video-toolkit
github/awesome-copilot
pproenca/dot-skills
Keeps context tight: create-remotion-geist is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added create-remotion-geist from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
create-remotion-geist fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
create-remotion-geist reduced setup friction for our internal harness; good balance of opinion and flexibility.
We added create-remotion-geist from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
create-remotion-geist has been reliable in day-to-day use. Documentation quality is above average for community skills.
Useful defaults in create-remotion-geist — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: create-remotion-geist is focused, and the summary matches what you get after install.
create-remotion-geist is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend create-remotion-geist for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 57