cursor-ad-agent: Skill for Claude Code

.agents/skills/remotion-to-hyperframes/SKILL.md

remotion-to-hyperframes is a skill for Claude Code, Codex from krusemediallc/cursor-ad-agent. It costs 204 tokens per session (2,068 once invoked), scanned A, a copy of remotion-to-hyperframes, MIT.

A guide for converting a Remotion composition into a HyperFrames composition. Remotion is a React-based framework for making videos, while HyperFrames uses HTML and GSAP with a timeline that can seek to exact times.

In plain words
What is it for?
Use it only when porting, migrating, translating, or rewriting an existing Remotion video composition as HyperFrames HTML.
Why use it?
It provides a defined way to translate common Remotion patterns while identifying patterns that do not fit HyperFrames' time-seeking model.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is krusemediallc/cursor-ad-agent's own configuration. It tells Claude Code and Codex how to work on cursor-ad-agent 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 cursor-ad-agent configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is cd ../hf-src && npx hyperframes render --output ../hf.mp4.

Reuse

Borrowing it

Nothing to install: this file belongs to krusemediallc/cursor-ad-agent. 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/krusemediallc/cursor-ad-agent/main/.agents/skills/remotion-to-hyperframes/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/krusemediallc/cursor-ad-agent

Made for: Claude Code, Codex.

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-to-hyperframes

README.md
[![agentmods](https://agentmods.dev/badge/skills/krusemediallc/cursor-ad-agent/remotion-to-hyperframes/github.svg)](https://agentmods.dev/skills/krusemediallc/cursor-ad-agent/remotion-to-hyperframes)
Your own site
<a href="https://agentmods.dev/skills/krusemediallc/cursor-ad-agent/remotion-to-hyperframes"><img src="https://agentmods.dev/badge/skills/krusemediallc/cursor-ad-agent/remotion-to-hyperframes/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-to-hyperframes

Your own site · 80×15
<a href="https://agentmods.dev/skills/krusemediallc/cursor-ad-agent/remotion-to-hyperframes"><img src="https://agentmods.dev/badge/skills/krusemediallc/cursor-ad-agent/remotion-to-hyperframes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 204 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,068 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.
Origin 78% copy Near-identical to another mod 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.00204 $0.02068
Opus 5 $0.00102 $0.01034
Sonnet 5 $0.00041 $0.00414
Haiku 4.5 $0.00020 $0.00207

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

Security

Grade A, and why

remotion-to-hyperframes 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 9d ago.

The scan reads SKILL.md. This mod also ships 9 executable files (assets/test-corpus/run.sh, assets/test-corpus/tier-1-title-card/remotion-src/remotion.config.ts, assets/test-corpus/tier-1-title-card/remotion-src/src/index.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Origin

This is a copy

78% identical to remotion-to-hyperframes — 15 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/remotion-to-hyperframes/SKILL.md · 121 lines

How it starts

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

Remotion to HyperFrames

Overview

Translate Remotion (React-based) video compositions into HyperFrames (HTML + GSAP) compositions. Most Remotion idioms have direct HyperFrames equivalents — the translation is mechanical for ~80% of typical compositions. This skill encodes the mapping and guards against the lossy 20% by refusing to translate patterns that don't fit HF's seek-driven model and recommending the runtime interop pattern from PR #214 instead.

The skill ships with a tiered test corpus (T1–T4, 4 fixtures total) that grades translations against measured SSIM thresholds. Don't translate without running the eval — a translation that "looks right" but renders 0.05 SSIM lower than the validated baseline is silently wrong.

When to use

Use this skill ONLY when the user explicitly asks to migrate from Remotion. Example trigger phrases:

  • "port my Remotion project to HyperFrames"
  • "convert this Remotion code to HyperFrames"
  • "migrate from Remotion"
  • "translate this Remotion comp"
  • "rewrite this as HyperFrames HTML"

Do NOT use this skill when:

  • (a) The user is authoring a new HyperFrames composition, even if they have or are A/B-testing a similar Remotion video.
  • (b) The user mentions Remotion in passing without asking for migration.
  • (c) The user shares Remotion code as reference material rather than asking for a translation.
  • (d) The user asks for "the same video as my Remotion one" without explicitly asking to migrate the source — treat that as a fresh HyperFrames build.

When in doubt, default to authoring a native HyperFrames composition with the hyperframes skill instead.

Workflow

Step 1: Lint the source

Run scripts/lint_source.py over the Remotion source directory. The lint detects patterns that can't translate cleanly:

  • Blockers (refuse + recommend interop): useState, useReducer, useEffect/useLayoutEffect with non-empty deps, async calculateMetadata, third-party React UI libraries (MUI, Chakra, Mantine, antd, shadcn, Radix, NextUI).
  • Warnings (translate after dropping the construct): @remotion/lambda config, delayRender, useCallback, useMemo, custom hooks.
  • Info (translate with note): staticFile, interpolateColors.

Read the full file on GitHub · 121 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 121 lines · 204 tokens per session scan A 1f02264b4229

Subscribe to this mod's changes

remotion-to-hyperframes is a skill published in the GitHub repository krusemediallc/cursor-ad-agent (10 stars, last pushed 1mo ago), licensed MIT. It adds 204 tokens to every session and 2,068 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. It is 78% identical to remotion-to-hyperframes, differing in 15 lines, and is treated as a copy.