# Send Video-Watch to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "video-watcher",
    "name": "Video-Watch",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/kartinW/video-watcher",
    "canonicalUrl": "https://clawhub.ai/kartinW/video-watcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/video-watcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-watcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/extract_frames.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "video-watcher",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:55:48.669Z",
      "expiresAt": "2026-05-07T10:55:48.669Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-watcher",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-watcher",
        "contentDisposition": "attachment; filename=\"video-watcher-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "video-watcher"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/video-watcher"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/video-watcher",
    "downloadUrl": "https://openagent3.xyz/downloads/video-watcher",
    "agentUrl": "https://openagent3.xyz/skills/video-watcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/video-watcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/video-watcher/agent.md"
  }
}
```
## Documentation

### Video Analyzer

Analyze video files by extracting frames at 1-second intervals using ffmpeg, then examining the frames to understand the video content.

### Prerequisites

Requires ffmpeg installed on the system. Install if missing:

# Ubuntu/Debian
sudo apt-get install -y ffmpeg

# macOS
brew install ffmpeg

### Extract frames from video

scripts/extract_frames.sh <video_path> [output_dir] [fps]

Arguments:

video_path (required): Path to the video file
output_dir (optional): Directory for extracted frames. Default: creates frames_<video_name> in current directory
fps (optional): Frames per second to extract. Default: 1 (one frame per second)

Example:

scripts/extract_frames.sh /path/to/video.mp4
scripts/extract_frames.sh /path/to/video.mp4 ./my_frames
scripts/extract_frames.sh /path/to/video.mp4 ./my_frames 2  # 2 frames per second

Output:

Creates numbered frame images: frame_001.jpg, frame_002.jpg, etc.
Prints video metadata (duration, resolution, frame count)

### Workflow

Run extract_frames.sh on the video file
Read key frames using the read tool to view images
For comprehensive analysis, sample frames at regular intervals (e.g., every 5th frame)
Describe what you see in each frame to build understanding of the video

### Tips

For short videos (<1 min): Review all frames
For medium videos (1-5 min): Sample every 3-5 frames
For long videos (>5 min): Sample every 10+ frames, focus on scene changes
Look for: scene transitions, text/titles, UI elements, actions, characters
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kartinW
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T10:55:48.669Z
- Expires at: 2026-05-07T10:55:48.669Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/video-watcher)
- [Send to Agent page](https://openagent3.xyz/skills/video-watcher/agent)
- [JSON manifest](https://openagent3.xyz/skills/video-watcher/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/video-watcher/agent.md)
- [Download page](https://openagent3.xyz/downloads/video-watcher)