open-claude-cowork: Skill for Claude Code

.claude/skills/remotion-best-practices/SKILL.md

remotion-best-practices is a skill for Claude Code from composio-community/open-claude-cowork. It costs 32 tokens per session (1,262 once invoked), scanned A, original, MIT.

A set of guidelines for creating videos with Remotion, a React framework that renders programmatically defined scenes into video.

In plain words
What is it for?
It supports work involving React video composition, frame-based animation, interpolation, and Remotion project setup.
Why use it?
It helps developers structure video projects and use Remotion’s frame-based animation tools correctly.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is composio-community/open-claude-cowork's own configuration. It tells Claude Code how to work on open-claude-cowork itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything open-claude-cowork configures →

About the project

Open Claude Cowork is an open-source desktop chat application that uses Claude’s agent software to automate work across connected applications, alongside a messaging-based personal assistant called Secure Clawdbot. People use it for multi-session work automation, reminders, messaging, and tasks involving services such as Gmail, Slack, and GitHub. The catalogue skills extend the applications’ agent workflows.

composio-community/open-claude-cowork · 4,353 stars · on GitHub

Reuse

Borrowing it

Nothing to install: this file belongs to composio-community/open-claude-cowork. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/composio-community/open-claude-cowork/master/.claude/skills/remotion-best-practices/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/composio-community/open-claude-cowork

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for remotion-best-practices

README.md
[![agentmods](https://agentmods.dev/badge/skills/composio-community/open-claude-cowork/remotion-best-practices/github.svg)](https://agentmods.dev/skills/composio-community/open-claude-cowork/remotion-best-practices)
Your own site
<a href="https://agentmods.dev/skills/composio-community/open-claude-cowork/remotion-best-practices"><img src="https://agentmods.dev/badge/skills/composio-community/open-claude-cowork/remotion-best-practices/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for remotion-best-practices

Your own site · 80×15
<a href="https://agentmods.dev/skills/composio-community/open-claude-cowork/remotion-best-practices"><img src="https://agentmods.dev/badge/skills/composio-community/open-claude-cowork/remotion-best-practices.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,262 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 31
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.1 $0.00032 $0.01262
Opus 5 $0.00016 $0.00631
Sonnet 5 $0.00006 $0.00252
Haiku 4.5 $0.00003 $0.00126

Measured 12d ago against content hash 8a6b33e5d974, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

remotion-best-practices 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 12d 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.

.claude/skills/remotion-best-practices/SKILL.md · 207 lines

How it starts

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

Remotion Best Practices

You are an expert in Remotion, the React framework for creating videos programmatically. Help users build video projects following best practices.

Core Concepts

The Fundamentals

Remotion gives you a frame number and a blank canvas. You render anything you want using React components, but instead of rendering UI to a browser, Remotion renders frames to a canvas.

Key Hooks

useCurrentFrame()

  • Returns an integer identifying the current frame being viewed
  • Use this to animate properties, states, and styles
  • Example: const frame = useCurrentFrame();

interpolate()

  • Helper function that maps values to another range using concise syntax
  • Makes animations more readable
  • Example: interpolate(frame, [0, 100], [0, 1])

Getting Started

Create New Project

# Requires Node.js 16+ or Bun 1.0.3+
npx create-video@latest

Start the Studio

npm start

The studio will open on port 3000 with a visual editor for your compositions.

Best Practices

1. Component Architecture

  • Use React components to define parts of your video (text, images, animations, scenes)
  • Write React code just like for a web app
  • Keep compositions modular and reusable
  • Separate logic from presentation

2. Player Component Optimization

⚠️ Critical: The <Player> should NOT be re-rendered every time updates occur.

Do this:

// Render controls and UI as siblings to the Player
// Pass a ref to the player as a prop
function VideoApp() {
  const playerRef = useRef(null);

  return (
    <>
      <Player ref={playerRef} component={MyComp} />
      <Controls playerRef={playerRef} />
    </>
  );
}

Don't do this:

// ❌ Avoid re-rendering Player on every state change
function VideoApp() {
  const [currentFrame, setCurrentFrame] = useState(0);
  return <Player component={MyComp} frame={currentFrame} />;
}

3. Dynamic Loading with lazyComponent

When using lazyComponent, wrap it in useCallback() to avoid constant re-rendering:

Read the full file on GitHub · 207 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. 12d ago First seen · 207 lines · 32 tokens per session scan A 8a6b33e5d974

Subscribe to this mod's changes

remotion-best-practices is a skill published in the GitHub repository composio-community/open-claude-cowork (4,353 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 1,262 once invoked, about $0.0002 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.