open-animate
Original:🇺🇸 English
Translated
Open Animate — the creative suite for AI agents. Create professional motion graphics, generate images, and render MP4 videos. Use when the user wants to make videos, animations, motion graphics, social clips, product launches, explainers, or any visual content. Supports asset generation (images, backgrounds, upscaling) and video composition with animation presets, transitions, and components.
2installs
Added on
NPX Install
npx skill4agent add jacobcwright/open-animate open-animateTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Open Animate — Creative Suite for Agents
Create professional motion graphics and generate visual assets. Describe what you want. Get an MP4.
Prerequisites
This skill builds on Remotion skills for core Remotion API patterns:
bash
npx skills add remotion-dev/skillsWorkflow
1. Initialize project
bash
npx oanim init my-video
cd my-video2. Compose using @oanim/core
@oanim/coretsx
import { fadeUp, popIn, Background, SafeArea, palettes } from '@oanim/core';See for the full presets reference.
references/animation-cookbook.md3. Preview
bash
npx remotion studio4. Render to MP4
bash
npx oanim render5. Generate and use media assets (optional)
bash
# Generate image, video, or audio
npx oanim assets gen-image --prompt "dark gradient abstract" --out public/bg.png
npx oanim assets run --model fal-ai/kling-video/v1/standard/text-to-video \
--input '{"prompt":"cinematic abstract motion","duration":"5"}' --out public/clip.mp4
npx oanim assets run --model fal-ai/stable-audio \
--input '{"prompt":"ambient electronic, no vocals","duration_in_seconds":30}' --out public/music.mp3Then use in your composition:
tsx
import { Img, OffthreadVideo, Audio, staticFile } from 'remotion';
<Img src={staticFile('bg.png')} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
<OffthreadVideo src={staticFile('clip.mp4')} style={{ width: '100%', height: '100%', objectFit: 'cover' }} />
<Audio src={staticFile('music.mp3')} volume={0.25} />Capabilities
| Capability | Tool |
|---|---|
| Project scaffolding | |
| Animation presets (fadeUp, popIn, springs) | |
| Components (Terminal, Card, Badge, GlowOrb) | |
| Scene transitions (fadeBlur, clipCircle, wipe) | |
| Typography (AnimatedCharacters, TypewriterText, CountUp) | |
| Design tokens (5 palettes, fonts, spacing) | |
| Rendering to video | |
| Cloud rendering | |
| AI image generation | |
| AI video generation | |
| AI audio generation | |
| Media compositing | |
| Image editing | |
| Background removal | |
| Image upscaling | |
| Any fal.ai model | |
References
- — Step-by-step agent workflow
references/workflow.md - — animate.json schema reference
references/scene-config.md - — Multi-scene composition architecture
references/composition-patterns.md - — Full
references/animation-cookbook.mdpresets reference@oanim/core - — AI asset generation guide
references/asset-generation.md - — Using generated media in compositions (Img, Video, Audio)
references/media-guide.md
Templates
- — 4-scene product launch (5s)
templates/launch-video.md - — Step-based explainer video (20s)
templates/explainer.md - — Logo animation with glow (5s)
templates/logo-reveal.md - — Vertical social clip (6s)
templates/meme-caption.md - — Metrics dashboard (15s)
templates/investor-update.md