Video Automation - The Full Remotion Suite

← Back to skills

> This skill combines the **[remotion-best-practices](../remotion-best-practices/SKILL.md)** skill with the Antigravity design system, enabling production-grade video ads.

Category: DevOps & Automation
Repo: nguyenphp-antigravity-marketing
Path: templates/.agent/skills/video-automation/SKILL.md
Updated: 4/20/2026, 12:45:47 PM

AI Summary

> This skill combines the **[remotion-best-practices](../remotion-best-practices/SKILL.md)** skill with the Antigravity design system, enabling production-grade video ads. It is useful for CI/CD pipelines, infrastructure as code, deployment automation, monitoring, and DevOps workflows. Source: nguyenphp-antigravity-marketing (templates/.agent/skills/video-automation/SKILL.md).

Video Automation - The Full Remotion Suite

This skill combines the remotion-best-practices skill with the Antigravity design system, enabling production-grade video ads.


📚 Required Reading

For detailed technical implementation, refer to the remotion-best-practices skill which contains 16 comprehensive rule files:

Core RulesDescription
animations.mdFrame-based animations with useCurrentFrame()
timing.mdSprings, easing, interpolation curves
sequencing.md<Sequence> and <Series> patterns
transitions.mdScene transitions with @remotion/transitions
audio.mdAudio import, trimming, volume control
videos.mdVideo embedding, looping, speed control
display-captions.mdTikTok-style captions with word highlighting
charts.mdAnimated bar/pie charts
3d.mdThree.js integration with @remotion/three
fonts.mdGoogle Fonts & Vietnamese font support

1. Antigravity Core Aesthetics (The Look)

Apply these design tokens to all Remotion components:

const ANTIGRAVITY_TOKENS = {
  background: '#0a0a0c',
  primary: '#00f2ff',    // Neon Cyan
  secondary: '#ff00e5',  // Neon Pink
  glass: 'rgba(255, 255, 255, 0.05)',
  fonts: ['Inter', 'Be Vietnam Pro'],
};

Key styling patterns:

  • Glassmorphism: backdropFilter: 'blur(20px)' with neon borders
  • Staggered Motion: Map array indices to delays (i * 10)
  • Micro-animations: Use Math.sin(frame/10) for pulsing effects

2. Usage Patterns

High-Fidelity Landing Page Cloning

  1. Research: Use browser_subagent to extract brand colors, images, headlines
  2. Implementation: Use interpolate, spring, Sequence to animate sections
  3. Aspect Ratios: Always offer 16:9 (YouTube) and 9:16 (TikTok/Reels)

TikTok-Style Captions

// Refer to display-captions.md in remotion-best-practices
import { createTikTokStyleCaptions } from '@remotion/captions';

3. Quick Commands

For non-tech users, just 3 commands:

CommandPurpose
npx remotion previewPreview in browser
npx remotion render <id> out.mp4Export final video
--port=300xRun multiple previews

4. Troubleshooting

FFmpeg Installation (macOS)

brew install ffmpeg

Headless Chrome Error

npx remotion render <id> --browser-executable="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"

Credits

  • Technical Rules: Based on remotion-dev/skills
  • Design System: Antigravity Marketing Kit aesthetics

Related skills