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.
npx skills add https://github.com/gooseworks-ai/goose-skills --skill watch
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.
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.
video exists and is readable. Probe duration with ffprobe.ranges: if empty, use [0, duration]. Reject ranges outside the file duration.fps: use caller value if provided, else auto-scale from total resolved range duration. Clamp at 2 fps.max_frames budget across ranges proportionally to range duration.ffmpeg into frames/ at the resolved fps and resolution.include_voice=true; degrade to frames-only and flag a warning if no Whisper backend is available.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.manifest.json capturing the resolved inputs (ranges, fps, frame count, audio flags) and output paths.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.max_frames.1 / fps.include_voice=true, the transcript covers the resolved ranges (no >500ms gap inside a VO segment unless the audio itself is silent there).manifest.json resolve to real files.video.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/parameters.md — full parameter reference, defaults, and the auto-fps budget table.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.
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.
Improves the quality of images, especially screenshots, by enhancing resolution, sharpness, and clarity. Perfect for preparing images for presentations, documentation, or social media posts.
Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.
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.
Microscopy data management platform. Access images via Python, retrieve datasets, analyze pixels, manage ROIs/annotations, batch processing, for high-content screening and microscopy workflows.
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.
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.
Take gooseworks-ai/watch from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
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.