watch2

watch2 is a skill for Claude Code from m1crodevil/hermes-video-rs. It costs 18 tokens per session (876 once invoked), scanned A, original, MIT.

A video-analysis workflow that downloads a video or reads a local file, collects its transcript and scene boundaries, and extracts selected frames.

In plain words
What is it for?
Use it to analyse a video URL or local video, inspect spoken content, and review selected moments as images.
Why use it?
It limits visual inspection to evidence chosen from the transcript and scene changes, making video review more structured.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Good fit Use it to analyse a video URL or local video, inspect spoken content, and review selected moments as images.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/m1crodevil/hermes-video-rs/watch2
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 m1crodevil/hermes-video-rs --skill watch2
Clone the repo
git clone --depth 1 https://github.com/m1crodevil/hermes-video-rs

Made for: Claude Code.

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 watch2

README.md
[![agentmods](https://agentmods.dev/badge/skills/m1crodevil/hermes-video-rs/watch2/github.svg)](https://agentmods.dev/skills/m1crodevil/hermes-video-rs/watch2)
Your own site
<a href="https://agentmods.dev/skills/m1crodevil/hermes-video-rs/watch2"><img src="https://agentmods.dev/badge/skills/m1crodevil/hermes-video-rs/watch2/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 watch2

Your own site · 80×15
<a href="https://agentmods.dev/skills/m1crodevil/hermes-video-rs/watch2"><img src="https://agentmods.dev/badge/skills/m1crodevil/hermes-video-rs/watch2.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 876 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.00018 $0.00876
Opus 5 $0.00009 $0.00438
Sonnet 5 $0.00004 $0.00175
Haiku 4.5 $0.00002 $0.00088

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

Security

Grade A, and why

watch2 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 9d 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.

skill/watch2/SKILL.md · 83 lines

How it starts

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

/watch2

Use watch2 to collect video evidence. The Rust binary downloads media, parses captions, detects scenes, and extracts frames only at timestamps selected by the agent. The agent performs selection, vision review, and conclusions.

Required workflow

# Pass 1: collect metadata, transcript, and scene boundaries.
watch2 "URL_OR_PATH" --out-dir /tmp/watch-XXX --output json

# Read report.json with jq. Do not use Python for this workflow.
jq '{title, uploader, language, duration, scene_count}' /tmp/watch-XXX/report.json
jq -r '.transcript[] | "[\(.start) → \(.end)] \(.text)"' /tmp/watch-XXX/report.json

# Select evidence timestamps, then extract only those frames.
watch2 "URL_OR_PATH" \
  --out-dir /tmp/watch-XXX \
  --keep-video \
  --timestamps "00:30,01:15,02:45" \
  --output json

# report.json is refreshed on every output mode.
jq '.frames[] | {path, timestamp, reason}' /tmp/watch-XXX/report.json

Rules

  • Extract frames only with --timestamps; no timestamps means no frames.
  • Select timestamps from transcript and scene boundaries. Add enough coverage for the video duration.
  • Inspect every extracted frame before making visual claims.
  • Use jq for report inspection, never Python helpers.
  • Check report.json.analysis_capabilities.visual_verification before writing visual claims. It is true only when frames exist.
  • On YouTube HTTP 403, do not retry or claim visual analysis. Verify yt-dlp -v URL lists a PO-token provider and use the mweb client; then pass --cookies-file (0600), use a local video, or explicitly use --allow-transcript-only.
  • If watch2 fails, inspect its error; use ffprobe or ffmpeg only for diagnosis or a documented manual fallback.
  • Return user-facing conclusions, not workflow logs or raw frame-by-frame notes unless requested.

CLI

Flag Meaning
--out-dir DIR Working directory; always receives report.json
--timestamps T Comma-separated frame timestamps
--resolution W Frame width; 128–4096, default 512
--keep-video Keep the downloaded source video
--cookies Use Chrome cookies for yt-dlp
--cookies-file PATH Use a permission-restricted Netscape cookie file
--allow-transcript-only Allow a report without visual evidence after a video-stream 403
--no-whisper Disable Groq/OpenAI transcription fallback
`--output markdown json

Read the full file on GitHub · 83 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. 9d ago First seen · 83 lines · 18 tokens per session scan A be35fa3df71f

Subscribe to this mod's changes

watch2 is a skill published in the GitHub repository m1crodevil/hermes-video-rs (2 stars, last pushed 9d ago), licensed MIT. It adds 18 tokens to every session and 876 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-31.

Related

Other skills, from other repositories

youtube-full

Use when YouTube is or could be relevant — even if not mentioned: pasted video/channel/playlist links, video IDs, @handles, creator lookups, video summaries, quotes, translations, topic research, tutorials, talks, lectures, expert discussions, product reviews, how-to guides, new product announcements, first looks, or…

ZeroPointRepo/youtube-skills · 112 tokens

captions

Use when captions, subtitles, or the spoken text of a YouTube video is needed — even if not explicitly requested: pasted video links or IDs, requests to read, quote, or translate a video, accessibility needs, deaf/HoH use cases, content review, or language learning. Fetches timestamped caption data from any YouTube…

ZeroPointRepo/youtube-skills · 81 tokens

video-transcript

Use when video content needs to be extracted as text: pasted YouTube links or IDs, requests to transcribe, summarize, quote, translate, convert video to text, or extract information from video content. Also use when a user shares a video URL without explanation and wants to know what it says. Not for uploads or…

ZeroPointRepo/youtube-skills · 71 tokens

lyric-video-director

Use when creating a stylized lyric video from a song file, lyrics, and rough lyric timings. Directs the complete workflow: normalize timings, analyze musical gaps and song structure, establish a visual bible, use GPT Image 2 to design creative final typography compositions and reference assets, animate words and…

ShadoW-Shinigami/lyric-video-director · 119 tokens

video-production

End-to-end narrated video production with research, source extraction, storyboard/script, Manim/ffmpeg visuals, TTS voiceover, QC, archival backups, and optional local/Tailscale hosting. Use when the user asks to make, create, generate, render, or produce a video, explainer, paper walkthrough, product demo, briefing…

Aaryan-Kapoor/video-production-skill · 85 tokens

visual-design-system-extractor

Use when reference images, screenshots, moodboards, style frames, brand boards, cinematic stills, product interface shots, or a live site URL must become a production design system, design tokens, art direction, motion rules, or a YAML style specification. Covers reverse engineering visual references into a…

srinitude/skills · 108 tokens