remotion-skill

A set of instructions for creating short marketing videos with Remotion, a tool that makes videos from React and TypeScript code.

In plain words
What is it for?
Making videos for X posts, Substack headers, LinkedIn launches, and product demonstrations.
Why use it?
It provides consistent rules for layout, animation timing, branding, and platform sizes instead of producing flat or inconsistent videos.

Skill for Claude CodeCodex

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 skills/yasuui/ystack/remotion-skill
Any agent
npx skills add Yasuui/ystack --skill remotion-skill
Clone the repo
git clone --depth 1 https://github.com/Yasuui/ystack

Made for: Claude Code, Codex.

Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,679 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.00077 $0.02679
Opus 5 $0.00039 $0.01340
Sonnet 5 $0.00015 $0.00536
Haiku 4.5 $0.00008 $0.00268

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

Security

Grade A, and why

remotion-skill 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 yesterday.

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.

.agents/skills/market-soft-skill/remotion-skill/SKILL.md · 296 lines

How it starts

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

Remotion Skill

Architecture Rules

File structure (non-negotiable)

project-video/
├── src/
│   ├── Root.tsx              — all Composition registrations
│   ├── brand.ts              — single source of truth for all tokens
│   └── compositions/
│       ├── x/                — 1080×1080 square
│       ├── substack/         — 1456×816 landscape
│       └── linkedin/         — 1200×628 landscape

brand.ts is the only place for tokens

Never hardcode a hex value inside a composition file. Every color, font, spring config, and timing constant lives in brand.ts. If you find yourself typing #00d4aa inside a .tsx file, stop and move it to brand.ts first.

// brand.ts structure
export const BRAND = {
  // Backgrounds — never pure black
  bg: "#080810",
  bgCard: "rgba(255,255,255,0.03)",
  
  // Accent — one accent, one glow
  accent: "#00d4aa",
  accentGlow: "rgba(0,212,170,0.12)",
  
  // Text hierarchy
  white: "#ffffff",
  white80: "rgba(255,255,255,0.80)",
  white50: "rgba(255,255,255,0.50)",
  white20: "rgba(255,255,255,0.20)",
  
  // Surfaces
  border: "rgba(255,255,255,0.07)",
  
  // Typography
  mono: "'SF Mono','Fira Code','Cascadia Code',monospace",
  sans: "-apple-system,'SF Pro Display','Segoe UI',sans-serif",
  
  // Spring configs — named by feel, not numbers
  spring: {
    snappy:  { stiffness: 400, damping: 28 },  // UI feedback, small elements
    smooth:  { stiffness: 200, damping: 22 },  // Standard entrances
    gentle:  { stiffness: 120, damping: 18 },  // Full-screen transitions
    bouncy:  { stiffness: 300, damping: 12 },  // Only for icons, never text
  },
} as const;

The Spring Pattern

This is how every animated element is written. No exceptions.

// THE PATTERN — memorise this
import { useCurrentFrame, useVideoConfig, spring, interpolate } from "remotion";

const frame = useCurrentFrame();
const { fps } = useVideoConfig();

// 1. Spring value (0 → 1)
const entrance = spring({
  frame: Math.max(0, frame - DELAY),  // DELAY = when this element starts (in frames)
  fps,
  config: BRAND.spring.smooth,
});

// 2. Use interpolate to drive transform and opacity separately
const opacity = interpolate(entrance, [0, 1], [0, 1]);
const translateY = interpolate(entrance, [0, 1], [20, 0]);  // enters from below

Read the full file on GitHub · 296 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. yesterday First seen · 296 lines · 77 tokens per session scan A fb92288ff1ad

Subscribe to this mod's changes

remotion-skill is a skill published in the GitHub repository Yasuui/ystack (1 stars, last pushed 5mo ago), licensed MIT. It adds 77 tokens to every session and 2,679 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

env-scanner

Scan and audit Gemini CLI, Claude Code, Antigravity, Continue, Windsurf, JetBrains AI, and OpenCode environments. Discovers configurations, audits memory tiers, detects skill extraction state, analyzes behavioral tool chains, checks policy governance (v0.40+), and suggests reusable skills with evidence gating.…

pauldatta/gemini-cli-scanner · 101 tokens

scan

Scan your AI coding tool ecosystem — Gemini CLI, Claude Code, Antigravity (Desktop, CLI, IDE), Continue, Windsurf, JetBrains AI, OpenCode. Produces a maturity score, advisory recommendations, and optionally generates reusable SKILL.md files from your conversation patterns. Use when the user asks to audit their…

pauldatta/gemini-cli-scanner · 82 tokens

skill-parity

Keeps skills in sync across Claude Code, Codex, Gemini CLI, and shared .agents/skills paths. Handles copying, updating, pruning, and verifying parity across all provider locations. Trigger on: "sync my skills", "hydrate codex with skills", "copy skill to gemini", "add this skill to codex", "update skills across…

jerseycheese/agent-skills · 103 tokens

drupal-mental-model

Use when explaining code, debugging, or discussing architecture with Jack — map programming concepts to Drupal equivalents he already knows from years of Drupal/theming work. Triggers on code reviews, debugging walkthroughs, architecture discussions, inline code explanations, or whenever a non-Drupal framework concept…

jerseycheese/agent-skills · 71 tokens

appendix-agentic-frameworks

This skill should be used when the user wants to "choose agent framework", "compare LangChain vs LangGraph", "compare ADK vs LangGraph", "which framework to use for agents", "LangGraph tutorial", "CrewAI setup", "agentic framework comparison", "framework selection guide", "LangChain LCEL", "Google ADK tutorial"…

hajekim/agentic-design-patterns-skills · 412 tokens

yapper

Yapper forces AI responses to be maximally verbose, thoroughly elaborated, and exhaustively explained. All output is expanded by 200–400%. Technical accuracy is maintained at 100%. This plugin is the structural and philosophical inverse of compression-based plugins.

dzan314/yapper · 54 tokens