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.
npx agentmods add commands/imgompanda/fireauto/video-makergit clone --depth 1 https://github.com/imgompanda/fireautoWhat 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.
| Model | Per session | Once 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 |
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.
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={{}}
/>
</>
);
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.
- 2d ago First seen · 252 lines · 19 tokens per session scan A c307de27bfcd
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.
Other commands, from other repositories
pn-delight
Add purposeful moments of joy, motion, and personality. Use when the design is correct and complete but feels flat and lifeless.
pn-quieter
Reduce visual decoration — animations, colors, shadows, effects — without removing content. Use when there's too much visual noise. For content and feature reduction, use pn-distill.
edit-video
Edit an existing video using Grok.
stt
Transcribe audio to text using Grok.
tts
Convert text to speech using Grok.
image
Generate an image using Grok.