setup-video-vision

setup-video-vision is a command for Claude Code from jordanrendric/claude-video-vision. It costs 20 tokens per session (1,069 once invoked), scanned A, original, MIT.

An interactive setup wizard for configuring a video-analysis tool, including its audio-transcription service, frame handling, and dependency checks.

In plain words
What is it for?
Choosing Gemini, local Whisper, or OpenAI transcription; configuring Whisper engines and models; and checking video-processing dependencies.
Why use it?
It guides users through the required choices and verifies that the selected video-analysis setup can work.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the claude-video-vision plugin — 1 skill, 2 commands, 1 agent shipped together

Good fit Choosing Gemini, local Whisper, or OpenAI transcription; configuring Whisper engines and models; and checking video-processing dependencies.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/jordanrendric/claude-video-vision/setup-video-vision
About the project

Claude Code Video Vision is a plugin that lets Claude Code inspect videos by extracting image frames and producing timestamped audio transcriptions. It supports YouTube URLs and uses Gemini, local Whisper, or OpenAI processing backends, while the catalogue entries provide its commands, agent, and skill.

jordanrendric/claude-video-vision · 1,294 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.

Clone the repo
git clone --depth 1 https://github.com/jordanrendric/claude-video-vision

Made for: Claude Code.

Or install claude-video-vision, the plugin that ships this one along with the rest of its 1 skill, 2 commands, 1 agent.

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 setup-video-vision

README.md
[![agentmods](https://agentmods.dev/badge/commands/jordanrendric/claude-video-vision/setup-video-vision/github.svg)](https://agentmods.dev/commands/jordanrendric/claude-video-vision/setup-video-vision)
Your own site
<a href="https://agentmods.dev/commands/jordanrendric/claude-video-vision/setup-video-vision"><img src="https://agentmods.dev/badge/commands/jordanrendric/claude-video-vision/setup-video-vision/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 setup-video-vision

Your own site · 80×15
<a href="https://agentmods.dev/commands/jordanrendric/claude-video-vision/setup-video-vision"><img src="https://agentmods.dev/badge/commands/jordanrendric/claude-video-vision/setup-video-vision.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,069 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 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.00020 $0.01069
Opus 5 $0.00010 $0.00535
Sonnet 5 $0.00004 $0.00214
Haiku 4.5 $0.00002 $0.00107

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

Security

Grade A, and why

setup-video-vision 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.

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.

commands/setup-video-vision.md · 133 lines

How it starts

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

Setup Video Vision

Guide the user through configuring claude-video-vision step by step. Ask one question at a time using multiple choice. After each answer, proceed to the next step.

Step 1: Backend Selection

Ask the user:

Which backend do you want to use for audio analysis?

a) Gemini API (recommended) — Best quality. Analyzes audio natively with Gemini Flash. Free tier: 1500 requests/day. Requires a GEMINI_API_KEY (free at ai.google.dev).

b) Local (Whisper) — Free, fully offline. Uses whisper.cpp or openai-whisper for audio transcription. No cloud dependency.

c) OpenAI Whisper API — Good quality. Requires OPENAI_API_KEY. Paid per usage.

All backends use ffmpeg to extract video frames — Claude sees the frames directly.

After the user answers, call video_configure with the chosen backend.

Step 2: Whisper Configuration (only if backend is "local")

If the user chose Local, ask these questions one at a time:

Engine

Which whisper engine?

a) whisper.cpp (recommended) — Faster, less RAM, optimized for Mac/Linux

b) Python (openai-whisper) — More flexible, easier to extend

Call video_configure with whisper_engine.

Model

Which whisper model? Your system has [detect RAM with video_setup] of RAM.

a) tiny (75MB) — Very fast, basic quality

b) small (500MB) — Good balance of speed and quality

c) large-v3-turbo (1.5GB) — Best cost-benefit, recommended for 8GB+ RAM

d) large-v3 (2.9GB) — Maximum quality, recommended for 16GB+ RAM

e) auto — Let the plugin choose based on your hardware

Call video_configure with whisper_model.

Audio Tags

Enable Whisper-AT for non-speech audio detection? (coughs, music, animal sounds, etc.)

a) Yes — Detects non-speech events (requires Whisper-AT installed)

b) No — Speech transcription only

Call video_configure with whisper_at.

Step 3: Frame Configuration

Ask these one at a time:

Resolution

Frame extraction resolution (width in pixels, height auto-scales)?

a) 256px — Low res, fast, fewer tokens

b) 512px (default) — Good balance

c) 768px — Higher detail

d) 1024px — Maximum detail, more tokens

Read the full file on GitHub · 133 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. 10d ago First seen · 133 lines · 20 tokens per session scan A b6430f9648a2

Subscribe to this mod's changes

setup-video-vision is a command published in the GitHub repository jordanrendric/claude-video-vision (1,294 stars, last pushed 1mo ago), licensed MIT. It adds 20 tokens to every session and 1,069 once invoked, about $0.0001 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 commands, from other repositories