find-footage

find-footage is a command for Claude Code from DojoCodingLabs/remotion-superpowers. It costs 38 tokens per session (536 once invoked), scanned A, original, MIT.

A command that searches Pexels, a stock-media website, for video clips or photos and downloads the selected files for a Remotion project. Remotion is a tool for creating videos with code.

In plain words
What is it for?
Use it to find footage or photos by subject, visual style, orientation, and mood, then download the chosen assets for video production.
Why use it?
It avoids manually searching, previewing, crediting, and downloading suitable stock media for a video.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the remotion-superpowers plugin — 2 skills, 13 commands, 3 agents, 2 hooks, 5 MCP servers shipped together

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 commands/dojocodinglabs/remotion-superpowers/find-footage
Clone the repo
git clone --depth 1 https://github.com/DojoCodingLabs/remotion-superpowers

Made for: Claude Code.

Or install remotion-superpowers, the plugin that ships this one along with the rest of its 2 skills, 13 commands, 3 agents, 2 hooks, 5 MCP servers.

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 find-footage

README.md
[![agentmods](https://agentmods.dev/badge/commands/dojocodinglabs/remotion-superpowers/find-footage.svg)](https://agentmods.dev/commands/dojocodinglabs/remotion-superpowers/find-footage)
Your own site
<a href="https://agentmods.dev/commands/dojocodinglabs/remotion-superpowers/find-footage"><img src="https://agentmods.dev/badge/commands/dojocodinglabs/remotion-superpowers/find-footage.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 536 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.1 $0.00038 $0.00536
Opus 5 $0.00019 $0.00268
Sonnet 5 $0.00008 $0.00107
Haiku 4.5 $0.00004 $0.00054

Measured 6d ago against content hash 4227a1a3e5a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

find-footage scanned grade A with 1 finding 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 6d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -L -o public/footage/[descriptive-name].mp4 "[video_url]"
commands/find-footage.md · 80 lines

What it actually says

You are helping the user find stock footage for their Remotion project using the Pexels MCP.

Load the remotion-production skill for the stock-footage-workflow rule.

Workflow

1. Understand the Need

Ask the user what they're looking for if not already clear. Get:

  • Subject — What should be in the footage? (people, nature, tech, food, etc.)
  • Style — Cinematic, aerial/drone, close-up, time-lapse, slow motion?
  • Orientation — Landscape (16:9), portrait (9:16), or square (1:1)?
  • Mood — Bright, dark, warm, cool, energetic, calm?

2. Search Pexels

Craft a descriptive search query and run:

Use Pexels searchVideos:
- query: [descriptive keywords — be specific]
- orientation: [landscape/portrait/square]
- size: large
- per_page: 5

For photos:

Use Pexels searchPhotos:
- query: [descriptive keywords]
- orientation: [landscape/portrait/square]
- size: large
- per_page: 5

3. Present Results

Show the user the results with:

  • Thumbnail/preview URL
  • Duration (for videos)
  • Resolution
  • Photographer credit

Ask which ones they want to download.

4. Download Selected Assets

mkdir -p public/footage  # or public/images for photos

# Download each selected clip
curl -L -o public/footage/[descriptive-name].mp4 "[video_url]"

5. Show Usage

After downloading, show how to use the clip in Remotion:

import { OffthreadVideo, staticFile } from "remotion";

<OffthreadVideo
  src={staticFile("footage/[descriptive-name].mp4")}
  style={{ width: "100%", height: "100%", objectFit: "cover" }}
/>

6. Attribution Reminder

Remind the user:

Pexels content is free to use. Attribution is appreciated but not required. Consider adding "Videos provided by Pexels" in your video credits.

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. 6d ago First seen · 80 lines · 38 tokens per session scan A 4227a1a3e5a9

Subscribe to this mod's changes

find-footage is a command published in the GitHub repository DojoCodingLabs/remotion-superpowers (118 stars, last pushed 6mo ago), licensed MIT. It adds 38 tokens to every session and 536 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.