mikefutia

Claude Vision — AI skill for Claude Code

AI community

Claude Vision Skill (Mike Futia SCALE AI).

How to install Claude Vision

This entry records only its repository, not the path inside it, so there is no exact command to give. Open mikefutia/claude-vision and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude Vision does

Claude Vision Skill (Mike Futia SCALE AI).

Alternatives in AI

  • Azure Vision Java — Image captioning, OCR, and object detection 1.8k ★
  • Setup Watch Skill — One-shot setup for Watch Skill — installs the engine, bootstraps ffmpeg/yt-dlp, registers the MCP server in ev 315 ★
  • Review Video — Review a rendered video with AI vision 113 ★

README

Claude Vision — Video Analyzer Skill

Join 550+ Performance Marketing Teams Inside SCALE AI: https://www.skool.com/scale-ai/about

Give Claude Code the ability to "watch" videos.

This is a Claude Code skill that routes any video file through Google's Gemini API (which has native video understanding) and returns a structured markdown report — top-level summary, scene-by-scene breakdown with timestamps, audio transcript, visual details, and key moments. Works on screen recordings, UGC ads, tutorials, demos, meeting recordings — anything Gemini can ingest.

It has strong anti-hallucination guardrails: it will not invent narrators, voiceovers, or speaker names that aren't actually in the video.

Install

1. Clone this repo

git clone https://github.com/mikefutia/claude-vision.git

2. Move it into your Claude Code skills folder

mv claude-vision ~/.claude/skills/video-analyzer

The folder name **must** be `video-analyzer` — that's how Claude Code finds the skill.

3. Get a free Gemini API key

Go to [Google AI Studio](https://aistudio.google.com/apikey) and create a key. The free tier is generous and fine for personal use.

4. Set the API key

The easiest way: open Claude Code in any project and ask it to set up the key for you. Something like:

"Set my GEMINI_API_KEY to `your_key_here` so it's available in every new shell."

Claude Code will add the export to your shell profile and confirm it works. You won't need to touch `.zshrc` yourself.

5. Install the Python dependency

The skill uses Google's official Gemini SDK:

pip install google-genai

If pip complains about an externally-managed environment, use:

pip install google-genai --break-system-packages

6. Use the skill

In Claude Code, just point it at a video:

"Use the video-analyzer skill on /path/to/my-video.mp4"

Or invoke it directly:

"/video-analyzer ~/Downloads/demo.mp4"

Claude will run the analysis and present the struct