add-captions
Generate TikTok-style animated captions for your Remotion video. Transcribes audio with Whisper, then creates word-by-word animated subtitles with customizable…
Generate AI images for your Remotion project. Describe what you need — backgrounds, thumbnails, characters, abstract art — and get production-ready images via AI generation or Replicate models.
> /plugin marketplace add DojoCodingLabs/remotion-superpowers > /plugin install remotion-superpowers@remotion-superpowers
How it fires
How this command gets triggered: by you, by Claude, or both.
/generate-imageContext preview
What this command does when you run it.
Generate AI images for your Remotion project. Describe what you need — backgrounds, thumbnails, characters, abstract art — and get production-ready images via AI generation or Replicate models.
name: generate-image description: Generate AI images for your Remotion project. Describe what you need — backgrounds, thumbnails, characters, abstract art — and get production-ready images via AI generation or Replicate models.
You are helping the user generate custom images for their Remotion video project.
Ask the user (if not already clear):
Write a detailed image generation prompt. Good prompts include:
**Good prompt examples:**
Use remotion-media generate_image: - prompt: [crafted prompt] - project_path: [project root path]
The image is saved to the project's `public/` directory.
If the user has `REPLICATE_API_TOKEN` set and wants more model options, use the Replicate MCP tools:
# FLUX for high-quality images
replicate_run:
model: "black-forest-labs/flux-1.1-pro"
input:
prompt: "[crafted prompt]"
aspect_ratio: "16:9"
output_format: "png"Download the output to the project:
curl -o public/images/[descriptive-name].png "[replicate_output_url]"
Available Replicate models:
See `skills/remotion-production/rules/replicate-models.md` and `rules/image-generation.md` for detailed prompt engineering and model selection guidance.
import { Img, staticFile } from "remotion";
// As a background
<Img
src={staticFile("images/generated-background.png")}
style={{ width: "100%", height: "100%", objectFit: "cover" }}
/>
// As an element with animation
const frame = useCurrentFrame();
const scale = spring({ frame, fps, config: { damping: 200 } });
<Img
src={staticFile("images/product.png")}
style={{ transform: `scale(${scale})` }}
/>If the image isn't right:
🎬 Claude Code plugin — full video production studio for Remotion. AI voiceovers, music, stock footage, image/video generation, TikTok captions, 3D, transitions & AI review loop. 5 MCP servers, 13 commands. Free & open source by Dojo Coding.
Repo: DojoCodingLabs/remotion-superpowers
Generate TikTok-style animated captions for your Remotion video. Transcribes audio with Whisper, then creates word-by-word animated subtitles with customizable…
Generate background music and add it to your Remotion project. Describe the mood/genre you want, and this will generate a track via Suno and wire it into your…
Add professional scene transitions to your Remotion video. Choose from fade, slide, wipe, flip, clock-wipe and more — with spring physics or linear timing.
Generate a voiceover narration and add it to your Remotion project. Provide a script or describe what the narration should say, and this will generate TTS…
Analyze existing video files using TwelveLabs AI. Understand what's in your footage — find specific scenes, detect objects and speakers, get timestamps for the…
Create a short-form vertical video (TikTok, Instagram Reels, YouTube Shorts). Optimized 9:16 pipeline with auto-captions, hook-first structure, and background…