clone-ad

clone-ad is a skill for Claude Code, Codex from krusemediallc/arcads-claude-code. It costs 112 tokens per session (5,514 once invoked), scanned A, original, MIT.

A tool for recreating a video advertisement for a different product or offer. It examines the original video's frames, speech, visual style, timing, camera work, and tone, then generates an adapted Seedance 2.0 video.

In plain words
What is it for?
Use it when you have a source ad and want a new video for another product, including adapted dialogue, visuals, pacing, and product imagery.
Why use it?
It removes the need to plan a new advertisement from scratch while keeping the source ad's overall structure. It turns an existing ad and product references into a customized video.

Skill for Claude CodeCodex

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

Good fit Use it when you have a source ad and want a new video for another product, including adapted dialogue, visuals, pacing, and product imagery.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/krusemediallc/arcads-claude-code/clone-ad
About the project

Arcads AI Video is an agent skill pack and prompting workspace for creating marketing videos and images through an Arcads account. Claude Code and Cursor users use it to produce advertising creative with Arcads' video, image, audio, and template tools. The catalogue entries provide the skills, instructions, hook, setting, and rule that support this workflow.

krusemediallc/arcads-claude-code · 1,475 stars · on GitHub

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.

Any agent
npx skills add krusemediallc/arcads-claude-code --skill clone-ad
Clone the repo
git clone --depth 1 https://github.com/krusemediallc/arcads-claude-code

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 clone-ad

README.md
[![agentmods](https://agentmods.dev/badge/skills/krusemediallc/arcads-claude-code/clone-ad.svg)](https://agentmods.dev/skills/krusemediallc/arcads-claude-code/clone-ad)
Your own site
<a href="https://agentmods.dev/skills/krusemediallc/arcads-claude-code/clone-ad"><img src="https://agentmods.dev/badge/skills/krusemediallc/arcads-claude-code/clone-ad.svg" alt="Measured on agentmods" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,514 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 Excessive Agency · line 310
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00112 $0.05514
Opus 5 $0.00056 $0.02757
Sonnet 5 $0.00022 $0.01103
Haiku 4.5 $0.00011 $0.00551

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

Security

Grade A, and why

clone-ad 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 8d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • clone-ad — 92% identical, 22 lines differ
skills/arcads-external-api/prompting/clone-ad/SKILL.md · 469 lines

How it starts

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

Clone ad — Seedance 2.0

Clone an existing video ad for a different product or offer. The agent analyzes the source video frame-by-frame, transcribes dialogue, extracts the visual style and beat structure, then generates a new Seedance 2.0 video adapted for the user's product.

How this differs from analyze-video:

  • analyze-video → output is a reusable markdown template saved to prompt-library/
  • clone-ad → output is a generated Seedance 2.0 video delivered to the user

Prerequisites

Before starting, verify:

which ffmpeg || echo "MISSING — run: brew install ffmpeg"
python3 -c "import whisper; print('whisper OK')" 2>/dev/null || echo "MISSING — run: pip3 install openai-whisper"

Both extract-frames.sh and whisper depend on ffmpeg. If missing, install via brew install ffmpeg before proceeding.

Workflow

Step 0: Gather inputs

Collect from the user:

Input Required Notes
Source video yes The video ad to clone. File path to .mp4, .mov, .webm
Product image recommended Reference photo of the user's product. Becomes referenceImages / @(img1) in the prompt. Without this, Seedance invents its own product design.
Product/offer description if no image Text description of the product, its features, target audience, and key selling points. Used to rewrite dialogue and product references.
Brand voice optional Check MASTER_CONTEXT.md for brand blocks. If empty, ask the user for tone/audience preferences.

If the user only provides a video and says "clone this for my product," ask them for at least a product image or a text description before proceeding.

Step 1: Extract frames and audio

Reuse the analyze-video extraction script — do NOT duplicate it.

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

Frame count by duration:

Read the full file on GitHub · 469 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. 8d ago First seen · 469 lines · 112 tokens per session scan A 5fc53dc8b3a2

Subscribe to this mod's changes

clone-ad is a skill published in the GitHub repository krusemediallc/arcads-claude-code (1,475 stars, last pushed 1mo ago), licensed MIT. It adds 112 tokens to every session and 5,514 once invoked, about $0.0006 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.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens