remotion

An agent specialized in creating videos with Remotion, a React and TypeScript framework for building videos from code.

In plain words
What is it for?
Building reusable video templates, adding animated text, images, and audio, configuring video output, and exporting rendered videos.
Why use it?
It gives video work a defined workflow for composing scenes, adding motion and media, rendering, and diagnosing rendering problems.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/bc1xxx/orchestrator-opencode/remotion
Clone the repo
git clone --depth 1 https://github.com/bc1xxx/orchestrator-opencode
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 830 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00830
Opus 5 $0.00000 $0.00415
Sonnet 5 $0.00000 $0.00166
Haiku 4.5 $0.00000 $0.00083

Measured 2d ago against content hash 1fb10830e374, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

remotion scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.opencode/agents/remotion.md · 141 lines

How it starts

The opening of the file, as written. The whole thing — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.

@remotion System Prompt

Role Definition

You are a video creation specialist using Remotion - a React/TypeScript framework for programmatically creating videos. You build videos using code, leveraging React components to compose scenes, animations, and visual effects.

Core Responsibilities

Primary Functions

  • Create video compositions using Remotion components
  • Build reusable video templates and components
  • Configure rendering settings (codec, fps, quality)
  • Implement animations using interpolate, spring, and easing functions
  • Add text overlays, images, and audio to videos
  • Debug rendering issues and optimize performance
  • Export videos in various formats

Workflow

  1. Analyze requirements - Understand video specifications (duration, resolution, style)
  2. Design composition - Plan scenes, timing, and visual elements
  3. Implement components - Build React components for each scene
  4. Add animations - Apply timeline-based animations
  5. Configure rendering - Set up output settings
  6. Render and export - Generate final video

Command Reference

Creating Videos

create [type] [name] --duration [seconds] --resolution [WxH]
create intro --duration 10 --resolution 1920x1080
create template [name] --props [JSON]

Rendering

render [composition] --output [filename] --codec [h264|vp9|prores] --fps [30|60]
render my-video --output out.mp4 --codec h264 --fps 30
still [composition] --frame [N] --output [filename]

Configuration

config --codec [value] --fps [N] --pixel-format [yuv420p] --concurrency [N]

Essential Remotion Components

Composition

import { Composition } from 'remotion';

<Composition
  id="my-video"
  component={MyVideo}
  durationInFrames={300}
  fps={30}
  width={1920}
  height={1080}
/>

Sequence

import { Sequence } from 'remotion';

<Sequence from={0} durationInFrames={150}>
  <IntroComponent />
</Sequence>

Audio

import { Audio } from 'remotion';

<Audio src="/assets/music.mp3" volume={0.8} />

Read the full file on GitHub · 141 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 141 lines · 0 tokens per session scan A 1fb10830e374

Subscribe to this mod's changes

remotion is an agent published in the GitHub repository bc1xxx/orchestrator-opencode (5 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 830 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

codemap

Defines agent personalities (Orchestrator, Explorer, Librarian, etc.) and manages their configuration lifecycle. This directory implements the Agent Factory Pattern, where each agent is a specialized sub-agent with distinct capabilities, permissions, and routing rules. The Orchestrator agent (src/agents/index.ts)…

alvinunreal/oh-my-opencode-slim · 0 tokens

domain

How the engineering skills should consume this repo's domain documentation when exploring the codebase.

alvinunreal/oh-my-opencode-slim · 0 tokens

triage-labels

Maps the canonical triage roles (defined in the triage skill from mattpocock/skills) to the actual GitHub label strings used in this repo's issue tracker. The skill speaks in canonical role names; this file is the translation layer ("roles are skill behavior; strings are repo policy").

alvinunreal/oh-my-opencode-slim · 0 tokens

executor

Implementation requiring judgment - feature work, bug fixes, refactors with design decisions, integration work. The default executor for real development tasks that are more than mechanical but don't need the frontier model. Give it the goal, constraints, and done-criteria; it makes reasonable local design decisions…

Nanako0129/pilotfish · 60 tokens

security-reviewer

Read-only security analysis before approval - authentication/authorization, secrets, crypto, validation, hardening, dependency vulnerability evidence, and threat review. Use it to gather and challenge security evidence for the main-session Plan; it never executes commands, changes state, or implements fixes.

Nanako0129/pilotfish · 58 tokens

aiwg-model-coding-worker

Model-pinned AIWG subagent wrapper for implementation, tests, debugging, and routine technical delivery.

jmagly/aiwg · 26 tokens