analyze-video

analyze-video is a skill for Claude Code, Codex from krusemediallc/cursor-ad-agent. It costs 134 tokens per session (4,207 once invoked), scanned A, a copy of analyze-video, MIT.

A method for studying a reference video and turning its visual style into a reusable Seedance 2.0 prompt template. The template describes structure, pacing, camera work, editing, and tone.

In plain words
What is it for?
Use it to analyze videos, extract frames and speech, and create reusable prompts for 15-second Seedance clips or multi-clip recreations of longer videos.
Why use it?
It removes the need to recreate each video prompt from scratch and helps adapt a chosen style to different products, people, or settings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is **Model guide:** Read [seedance-2.md](../prompt-library/seedance-2.md) first for platform rules, API parameters, and the adaptation checklist..

Good fit Use it to analyze videos, extract frames and speech, and create reusable prompts for 15-second Seedance clips or multi-clip recreations of longer videos.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/krusemediallc/cursor-ad-agent
agentmods
npx agentmods add skills/krusemediallc/cursor-ad-agent/analyze-video

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 analyze-video

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/krusemediallc/cursor-ad-agent/analyze-video"><img src="https://agentmods.dev/badge/skills/krusemediallc/cursor-ad-agent/analyze-video.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 134 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,207 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 95% 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.00134 $0.04207
Opus 5 $0.00067 $0.02103
Sonnet 5 $0.00027 $0.00841
Haiku 4.5 $0.00013 $0.00421

Measured 10d ago against content hash 7952b8f69270, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

analyze-video 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/extract-frames.sh), 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

95% identical to analyze-video — 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.

skills/arcads-external-api/prompting/analyze-video/SKILL.md · 385 lines

How it starts

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

Analyze Video → Reusable Prompting Template

Someone found a video style they love. Your job is to deconstruct it into a reusable prompting template — a formula they can plug any product, person, or setting into and get that same style back from Seedance 2.0.

Critical constraint: Seedance 2.0 has a 15-second maximum per clip. The reference video may be longer than 15 seconds (often 30-60s). Your template must be designed for 15-second output — which means distilling the style's essence into what can be captured in a single 15-second clip, and providing a multi-clip strategy for recreating the full effect of longer-form styles across a series of clips.

The output is NOT a single prompt. It's a template skill saved to skills/arcads-external-api/prompting/prompt-library/ that works the same way seedance-2-ugc.md works — a documented formula with layers, variables, options, and examples that the agent can use to generate unlimited prompts in that style.

Dependencies

  • ffmpeg / ffprobe — required for frame extraction (Step 1). Install via brew install ffmpeg on macOS.
  • Whisper transcription — use npx hyperframes transcribe (preferred; it manages whisper.cpp and model downloads) or the optional openai-whisper Python package. If neither is available, ask the user to provide dialogue manually.

Inputs

  • Video file (required): path to .mp4, .mov, .webm, or similar
  • Style name (optional): what to call this template (e.g., "car-review", "unboxing-hype", "skeptic-converted"). If not provided, you'll name it based on what you observe.

Step 1: Extract frames and audio

Run the extraction script:

bash "skills/arcads-external-api/prompting/analyze-video/scripts/extract-frames.sh" "<video_path>" "/tmp/video-analysis" <num_frames>

Frame count by duration:

  • Under 10s → 8 frames
  • 10-20s → 12 frames
  • 20-30s → 16 frames
  • Over 30s → 20 frames

Read metadata.txt for duration, resolution, and fps.

Read the full file on GitHub · 385 lines

Files

What ships with it

1 file 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. 10d ago First seen · 385 lines · 134 tokens per session scan A 7952b8f69270

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

RunAPI Media Generator

A workflow for creating images, videos, music, and audio through RunAPI, a service that provides access to media-generation models. It checks the chosen model and request before submitting the job.

runapi-ai/mcp · 90 tokens

imaginode

Generate AI images and videos through the Imaginode MCP server (imaginode.ai). Use when the user asks to create, generate or illustrate an image, picture, visual, thumbnail, or a short video clip, and the Imaginode MCP tools (generateimage, generatevideo, listmodels, getgenerationstatus) are available.

Frankhoubre/imaginode-mcp · 72 tokens

uni1-image-ad

Use when the user wants to generate a Meta/Facebook image ad with Luma uni-1 and attach it to an existing Meta ad set. Triggers on phrases like "uni-1 ad", "make a Luma ad creative", "new image ad in ", "uni-1 image ad for Meta", "generate uni-1 ad creative", "upload uni-1 image as Meta ad". Anchors on uni-1 + Meta…

krusemediallc/uni1-image-ad · 138 tokens

image-ad-clone

Use when the user wants to reverse-engineer an existing image ad into a reusable, parameterizable prompt template that can be reused with any brand and any product. Triggers on phrases like "clone this ad as a template", "reverse engineer this ad", "turn this ad into a prompt", "extract a template from this image"…

krusemediallc/uni1-image-ad · 126 tokens

distribea-media

Generate or place on-brand media (images, video, music, voice) with Distribea. Use whenever a project needs imagery or audio — a hero/illustration/avatar, a page full of placeholders, a video clip, background music, or a voice-over — instead of shipping stock photos, placeholders, CSS-gradient-only sections, or raw…

Distribea/distribea-mcp · 113 tokens

image-studio

Studio de geracao de imagens inteligente — roteamento automatico entre ai-studio-image (fotos humanizadas/influencer) e stability-ai (arte/ ilustracao/edicao). Detecta o tipo de imagem solicitada...

ratnesh-maurya/cursor-claude-personas · 51 tokens