video-maker

A command for creating videos by writing React components with Remotion, a framework that renders code into video files. It can set up projects, create or edit video scenes, and render them.

In plain words
What is it for?
Use it to make programming videos, title sequences, text animations, charts, 3D scenes, or other rendered video content.
Why use it?
It lets developers describe animations and layouts in code instead of assembling every frame manually in a video editor.

Command

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 commands/imgompanda/fireauto/video-maker
Clone the repo
git clone --depth 1 https://github.com/imgompanda/fireauto
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,962 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.00019 $0.01962
Opus 5 $0.00010 $0.00981
Sonnet 5 $0.00004 $0.00392
Haiku 4.5 $0.00002 $0.00196

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

Security

Grade A, and why

video-maker 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.

plugin/commands/video-maker.md · 252 lines

How it starts

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

video-maker: 코드 기반 영상 제작

React 기반 프레임워크 Remotion을 사용해서 코드로 영상을 만들어주는 커맨드예요. 프로그래밍으로 영상을 만들 수 있어서, AI가 직접 영상 코드를 작성하고 렌더링할 수 있어요.

모든 출력은 **한국어(토스체)**로 작성해요.


Step 0: Remotion MCP 설치 확인

Remotion MCP가 설치되어 있으면 문서 검색이 훨씬 정확해져요. 설치 여부를 먼저 확인하세요:

mcp__remotion-documentation__remotion-documentation 도구가 사용 가능한지 확인해요.

사용 불가능한 경우 — MCP 설치 안내

사용자에게 안내하세요:

Remotion MCP를 설치하면 AI가 공식 문서를 실시간으로 검색할 수 있어요. 설치 방법이에요:

# Claude Code를 종료하고, .mcp.json 파일에 추가해요

프로젝트 루트의 .mcp.json 파일을 확인하거나 생성하세요:

{
  "mcpServers": {
    "remotion-documentation": {
      "command": "npx",
      "args": ["@remotion/mcp@latest"]
    }
  }
}

설정을 저장한 뒤 Claude Code를 종료하고 다시 시작해야 MCP가 활성화돼요. 종료: Ctrl+C 또는 /exit 재시작: claude

재시작 후 다시 /video-maker를 실행해주세요!

MCP 없이도 기본 기능은 동작하지만, MCP가 있으면 30개 이상의 Remotion 전문 규칙(자막, 3D, 차트, 오디오 등)을 실시간 참조할 수 있어요.


Step 1: 모드 파악

사용자 메시지에서 모드를 파악하세요:

  • init — "새 영상 프로젝트", "Remotion 셋업", "영상 프로젝트 만들기" → 프로젝트 초기 설정
  • create — "영상 만들어줘", "인트로 영상", "텍스트 애니메이션" → 영상 컴포넌트 생성
  • edit — "영상 수정", "길이 변경", "색상 바꿔" → 기존 영상 수정
  • render — "렌더링", "영상 출력", "mp4로" → 영상 렌더링

Step 2-A: init 모드 (프로젝트 셋업)

기존 프로젝트에 추가하는 경우

npm i remotion @remotion/cli @remotion/media

필요에 따라 추가 패키지:

  • @remotion/transitions — 장면 전환 효과
  • @remotion/gif — GIF 임베딩
  • @remotion/three — 3D (Three.js)

기본 파일 구조를 생성하세요:

src/remotion/
├── index.ts        # registerRoot
├── Root.tsx        # Composition 정의
└── compositions/   # 영상 컴포넌트들
    └── MyVideo.tsx

src/remotion/index.ts:

import { registerRoot } from "remotion";
import { Root } from "./Root";
registerRoot(Root);

src/remotion/Root.tsx:

import { Composition } from "remotion";
import { MyVideo } from "./compositions/MyVideo";

export const Root: React.FC = () => (
  <>
    <Composition
      id="MyVideo"
      component={MyVideo}
      durationInFrames={150}
      width={1920}
      height={1080}
      fps={30}
      defaultProps={{}}
    />
  </>
);

Read the full file on GitHub · 252 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 · 252 lines · 19 tokens per session scan A c307de27bfcd

Subscribe to this mod's changes

video-maker is a command published in the GitHub repository imgompanda/fireauto (140 stars, last pushed 4mo ago), licensed MIT. It adds 19 tokens to every session and 1,962 once invoked, about $0.0001 per session on Opus 5. 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-30.