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 video clips for your Remotion project. Create unique footage from text descriptions or animate still images into video — no stock footage needed.
> /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-clipContext preview
What this command does when you run it.
Generate AI video clips for your Remotion project. Create unique footage from text descriptions or animate still images into video — no stock footage needed.
name: generate-clip description: Generate AI video clips for your Remotion project. Create unique footage from text descriptions or animate still images into video — no stock footage needed.
You are helping the user generate custom AI video clips for their Remotion project. This creates unique footage that doesn't exist anywhere — going beyond stock footage.
Ask the user:
Good video generation prompts include:
**Good prompt examples:**
Use remotion-media generate_video: - prompt: [crafted prompt] - project_path: [project root path]
The clip is saved to the project's `public/` directory.
If the user has `REPLICATE_API_TOKEN` and wants specific models, use the Replicate MCP tools:
**Text-to-Video:**
# Wan 2.5 (open source, fast)
replicate_create_prediction:
model: "wan-video/wan-2.5-t2v-fast"
input:
prompt: "[crafted prompt]"
num_frames: 81
resolution: "480p"**Image-to-Video (animate a still):**
# Kling 2.6 (cinematic, top-tier I2V)
replicate_create_prediction:
model: "kwaivgi/kling-v2.6-pro"
input:
image: "[image_url]"
prompt: "[motion description]"
duration: 5Poll with `replicate_get_prediction` until status is `succeeded`, then download the output:
curl -o public/footage/[descriptive-name].mp4 "[replicate_output_url]"
**Model recommendations:**
See `skills/remotion-production/rules/replicate-models.md` and `rules/video-generation.md` for detailed prompt engineering and model selection guidance.
import { OffthreadVideo, staticFile } from "remotion";
// Full-scene background clip
<OffthreadVideo
src={staticFile("footage/ai-clip.mp4")}
style={{ width: "100%", height: "100%", objectFit: "cover" }}
/>
// Trimmed clip in a sequence
<Sequence from={5 * fps} durationInFrames={3 * fps}>
<OffthreadVideo
src={staticFile("footage/ai-clip.mp4")}
startFrom={0}
style={{ width: "100%", height: "100%", objectFit: "cover" }}
/>
</Sequence>AI-generated clips work great when layered:
🎬 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…