Agent skill · Code Review & Quality

video-explorer

This skill should be used when analyzing video files. You cannot process video directly, so this skill extracts frames hierarchically - starting with a quick overview, then zooming into regions of interest with higher resolution and temporal density. Use when asked to watch, analyze, review, or understand video content.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill video-explorer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/video-explorer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Video Explorer Analyze video content through hierarchical frame extraction. Start wide, identify interesting regions, zoom in. ## Workflow ### 1. Overview First Extract quick thumbnails to see the video timeline: ```bash ./skills/video-explorer/scripts/videx overview <video> ``` This creates small frames (320px) at 10-second intervals in `./videx-out/<name>/overview/`. Read all overview frames to understand video structure: ```bash ls ./videx-out/<name>/overview/ ``` Then use the Read tool on the jpg files to see them. ### ⚠️ Triplet Rule: Never Single-Frame Sample A single snapshot tells you nothing about *change*. Overview automatically extracts **3 frames per sample point** (t-δ, t, t+δ) so you see motion at each checkpoint. Default δ=0.1s (~3 frames at 30fps) — tight enough to show micro-motion against the long interval between samples. Triplet files are suffixed `_a`, `_b`, `_c`. Always compare the triplet together. Configure delta for your needs: - `--triplet=0.1` (default) — subtle motion, UI transitions - `--triplet=0.5` — broader change, scene transitions - `--triplet=1.0` — wide spread, slow-moving content ### 2. Identify Regions of Interest After viewing overview frame

What's inside
Steps it walks through
  1. Workflow
  2. 1. Overview First
  3. ⚠️ Triplet Rule: Never Single-Frame Sample
  4. 2. Identify Regions of Interest
  5. 3. Zoom In
  6. 4. Iterate
  7. Commands Reference
  8. Time Formats
  9. Output Structure
  10. Example Session
Ships with 1 file
  • metadata.json
Commands it runs
ls ./videx-out/<name>/overview/
More from claude-skill-registry
All skills →
About this skill
What does the video-explorer skill do?

This skill should be used when analyzing video files. You cannot process video directly, so this skill extracts frames hierarchically - starting with a quick overview, then zooming into regions of interest with higher resolution and temporal density. Use when asked to watch, analyze, review, or understand video content.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill video-explorer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going