一键导入
remotion-video
Create and render programmatic videos with Remotion (React-based MP4/PNG). Scaffold projects, run Studio, render locally or via Lambda.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and render programmatic videos with Remotion (React-based MP4/PNG). Scaffold projects, run Studio, render locally or via Lambda.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Seamless bidirectional bridge between nanobot (Ollama Mistral orchestrator) and overstory (Claude Code agent swarm). Routes tasks through the OverClaw gateway (port 18800) to overstory for subagent coordination, syncs memory.
Integrates OpenClaw with the FunClip AI video editor to enable AI-powered video recognition and clipping via command line.
IMPORTANT: OpenRouter is required. Routes tasks to the right model and always delegates work through sessions_spawn. Rejects prompt-injection patterns in task strings (v1.7.6+).
Automatically create clips and videos from media files in a specified folder. Uses Agent Swarm for intelligent task delegation and supports cron-based scheduling.
Analyzes journal entries and chat history to identify high-value topics and automatically generate blog posts.
Extracts and analyzes Cursor IDE chat history to identify key discoveries, obstacles, and solutions, saving findings to the journal.
| name | remotion-video |
| displayName | Remotion Video |
| description | Create and render programmatic videos with Remotion (React-based MP4/PNG). Scaffold projects, run Studio, render locally or via Lambda. |
| version | 1.0.0 |
Integrates OpenClaw with Remotion: create real MP4 videos (and stills) programmatically with React. Parametrize content, render locally or serverless (AWS Lambda), and build custom video apps or automation pipelines.
<Composition id="..." component={MyComp} durationInFrames={...} width={...} height={...} fps={30} />. Each composition has an id, dimensions, FPS, duration in frames, and optional defaultProps (JSON-serializable).<Sequence>, or render a single frame with <Still>.npm run dev) to preview, scrub, and tweak props.npx remotion render <entry|serve-url> <composition-id> <output.mp4> and npx remotion still ... for stills. Or use Node APIs: renderMedia(), renderStill() from @remotion/renderer.npx remotion lambda; Node API: @remotion/lambda.npx create-video@latest — choose template (Hello World, Next.js, React Router, etc.). Requires Node 16+ or Bun 1.0.3+.This skill lets OpenClaw agents:
npx create-video@latest in a target directory (or use existing project path from config.json).npm run dev (or equivalent) in the project root for interactive preview.npx remotion render <entry> <composition-id> <output.mp4> with optional --props='{"key":"value"}', --codec, --quality, etc.npx remotion still <entry> <composition-id> <output.png> with optional --frame, --image-format, --props.@remotion/lambda are configured, delegate batch or high-throughput renders to Lambda via CLI or Node API.Agents should read this SKILL.md and config.json to know the project path and any Lambda/S3 settings before running commands.
| Command | Purpose |
|---|---|
npx create-video@latest | Scaffold new Remotion project (interactive). |
npm run dev | Start Remotion Studio (in project root). |
npx remotion render <entry> <composition-id> <out.mp4> | Render video to MP4 (or other codec). |
npx remotion still <entry> <composition-id> <out.png> | Render single frame to image. |
npx remotion lambda ... | Lambda deploy/render (if @remotion/lambda installed). |
Use --help on any npx remotion command for flags (e.g. --props, --codec, --frame).
Skill script (optional): From the skill root, scripts/remotion_render.py reads config.json and runs render/still from the configured projectPath:
python3 scripts/remotion_render.py status — show resolved project path and config.python3 scripts/remotion_render.py render <entry> <composition-id> <output.mp4> [--props '{}']python3 scripts/remotion_render.py still <entry> <composition-id> <output.png> [--frame 0] [--props '{}']Remotion Video connects OpenClaw’s automation and agent workflows to Remotion’s programmatic video stack: generate or parameterize videos from data, scripts, or user requests; render locally for quick iterations or via Lambda for scale; and optionally embed the Player in apps for live preview without rendering to file.
npx create-video@latest or an existing repo that uses remotion, @remotion/bundler, @remotion/renderer, etc.@remotion/lambda in the project for cloud rendering. See Remotion Lambda.config.json)package.json and Remotion entry live). Used by scripts to run npm run dev, npx remotion render, etc.node (or bun) if not on PATH.enabled, region, s3Bucket, etc., for Lambda-based renders (see Remotion Lambda docs).| Tool | Purpose | Required |
|---|---|---|
| Node 16+ or Bun | Run Remotion and npm/npx | Yes |
| npm / npx | Install deps, run Studio, run remotion CLI | Yes |
| Remotion project | Compositions and entry point | Yes |
| AWS (Lambda) | Distributed cloud render | Optional |
remotion-video/
├── SKILL.md # This file
├── _meta.json # Skill metadata
├── config.json # projectPath, optional nodePath / lambda
├── README.md # Quick start and links
└── scripts/ # (Optional) helpers for scaffold/render from OpenClaw