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.
npx skills add m1crodevil/hermes-video-rs --skill watch2git clone --depth 1 https://github.com/m1crodevil/hermes-video-rsWrote 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.
[](https://agentmods.dev/skills/m1crodevil/hermes-video-rs/watch2)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
jqfor report inspection, never Python helpers. - Check
report.json.analysis_capabilities.visual_verificationbefore 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 URLlists a PO-token provider and use themwebclient; then pass--cookies-file(0600), use a local video, or explicitly use--allow-transcript-only. - If
watch2fails, inspect its error; useffprobeorffmpegonly 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 |
What ships with it
12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/agent-workflow.md 1.4 KB
- references/api-key-optional-fix.md 2.3 KB
- references/configuration.md 1.0 KB
- references/frame-extraction.md 1.4 KB
- references/language-detection.md 265 B
- references/pitfalls.md 15 KB
- references/rust-video-editing.md 3.3 KB
- references/scene-detection.md 568 B
- references/script-reference.md 700 B
- references/transcript-features.md 401 B
- references/visual-verification.md 513 B
- references/workflow-details.md 3.7 KB
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.
- 9d ago First seen · 83 lines · 18 tokens per session scan A be35fa3df71f
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.
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…
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…
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…
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…
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…
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…