mcpbeat Sign in

Watch Agent Skill

Watch a rendered video (whole file or specific ranges) at a chosen fidelity and emit a timestamp-keyed observation report. Observation only — no edits, no verdicts.

3k tokens
context cost
the whole folder, loaded on every use
8
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1086
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/gooseworks-ai/goose-skills --skill watch

What comes with it

6 051 bytes besides the instruction
references/parameters.md
skill.meta.json
tests/expected-output.md
tests/human-test.md
tests/sample-input.md
tests/smoke-test.md
tests/verifier.md

The instruction itself

8 sections, as written by the author

watch

Purpose

Look at a rendered video and report what is actually on screen and in the audio. By default it watches the entire video and considers visuals, voiceover, music, and sound effects. Callers can narrow the scope (specific timestamp ranges, lower frame rate, disable audio tracks) when they want a cheaper or more focused pass.

This is the observation primitive that watch-and-refine calls before deciding what to fix. Other review and editing skills can call it directly.

Inputs

  • video — path to a local video file. Required.
  • ranges — optional list of [start, end] timestamps to watch. Accepts SS, MM:SS, or HH:MM:SS. Defaults to the whole video.
  • fps — frame sampling rate. Defaults to auto by duration (≤30s → 1–2 fps, 30s–1min → ~1 fps, 1–3min → ~0.5 fps, 3–10min → ~0.25 fps). Hard cap 2 fps.
  • max_frames — hard cap on total frames sampled across all ranges. Default 100.
  • resolution — frame width in px. Default 512. Bump to 1024 only when on-screen text legibility matters.
  • include_voice — bool, default true. Transcribe spoken VO/dialogue.
  • include_music — bool, default true. Describe music presence, swells, drops, gain relative to VO.
  • include_sfx — bool, default true. Note sound effects, foley, transition stingers.
  • focus — optional free-text prompt describing what to pay attention to (e.g. "watch the end card", "judge cut timing on the beat drop").

If all three audio flags are false, the skill runs frames-only and notes this in the manifest.

Workflow

  • Validate video exists and is readable. Probe duration with ffprobe.
  • Resolve ranges: if empty, use [0, duration]. Reject ranges outside the file duration.
  • Resolve fps: use caller value if provided, else auto-scale from total resolved range duration. Clamp at 2 fps.
  • Allocate the max_frames budget across ranges proportionally to range duration.
  • Extract frames with ffmpeg into frames/ at the resolved fps and resolution.
  • If any audio flag is true, extract the audio for the resolved ranges to a working WAV. Run a transcript pass when include_voice=true; degrade to frames-only and flag a warning if no Whisper backend is available.
  • Compose observation.md — a timestamp-keyed report. Each entry references the frame paths visible during that window plus any transcript line and audio notes (music/SFX) for the same window. If focus is set, lead each entry with what was observed about that focus.
  • Write manifest.json capturing the resolved inputs (ranges, fps, frame count, audio flags) and output paths.

Output

  • observation.md — timestamp-keyed observation report. No verdicts, no "good/bad" framing.
  • frames/*.jpg — sampled frames referenced from the report.
  • transcript.json — word-timestamped transcript, only when include_voice=true and a Whisper backend was available.
  • manifest.json — resolved inputs and output paths.

Quality Checks

  • Frame count never exceeds max_frames.
  • Every range produced at least one frame, unless the range is shorter than 1 / fps.
  • When include_voice=true, the transcript covers the resolved ranges (no >500ms gap inside a VO segment unless the audio itself is silent there).
  • All paths in manifest.json resolve to real files.
  • The report contains no recommendations — it describes only what was observed.

Failure Modes

  • Missing or unreadable video.
  • A ranges entry falls outside the file duration.
  • include_voice=true but no Whisper backend is configured — degrade to frames-only and flag a warning in the manifest.
  • max_frames budget too tight to give every range at least one frame — surface which ranges were skipped.

References

  • references/parameters.md — full parameter reference, defaults, and the auto-fps budget table.

Other skills for the same job

different authors, same section of the catalogue
Canvas Design
by anthropics
vendor ×13

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

1388k tokens
Algorithmic Art
by anthropics
vendor ×10

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.

15k tokens scripts
Image Enhancer
by frostant
×6

Improves the quality of images, especially screenshots, by enhancing resolution, sharpness, and clarity. Perfect for preparing images for presentations, documentation, or social media posts.

635 tokens
Video Downloader
by CommandCodeAI
×4

Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.

671 tokens
Histolab
by christophacham
×3

Lightweight WSI tile extraction and preprocessing. Use for basic slide processing tissue detection, tile extraction, stain normalization for H&E images. Best for simple pipelines, dataset preparation, quick tile-based analysis. For advanced spatial proteomics, multiplexed imaging, or deep learning pipelines use pathml.

18k tokens
Omero Integration
by christophacham
×3

Microscopy data management platform. Access images via Python, retrieve datasets, analyze pixels, manage ROIs/annotations, batch processing, for high-content screening and microscopy workflows.

32k tokens
Pydicom
by christophacham
×3

Python library for working with DICOM (Digital Imaging and Communications in Medicine) files. Use this skill when reading, writing, or modifying medical imaging data in DICOM format, extracting pixel data from medical images (CT, MRI, X-ray, ultrasound), anonymizing DICOM files, working with DICOM metadata and tags, converting DICOM images to other formats, handling compressed DICOM data, or processing medical imaging datasets. Applies to tasks involving medical image analysis, PACS systems, radiology workflows, and healthcare imaging applications.

13k tokens scripts
Transformers
by christophacham
×3

This skill should be used when working with pre-trained transformer models for natural language processing, computer vision, audio, or multimodal tasks. Use for text generation, classification, question answering, translation, summarization, image classification, object detection, speech recognition, and fine-tuning models on custom datasets.

13k tokens

How to use it

Copy the folder

Take gooseworks-ai/watch from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.