# Send Video Dl 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-dl",
    "name": "Video Dl",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dimitryvin/video-dl",
    "canonicalUrl": "https://clawhub.ai/dimitryvin/video-dl",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/video-dl",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-dl",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/compress-and-send.sh",
      "scripts/download.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "video-dl",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T16:32:20.675Z",
      "expiresAt": "2026-05-17T16:32:20.675Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-dl",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-dl",
        "contentDisposition": "attachment; filename=\"video-dl-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "video-dl"
      },
      "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-dl"
    },
    "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-dl",
    "downloadUrl": "https://openagent3.xyz/downloads/video-dl",
    "agentUrl": "https://openagent3.xyz/skills/video-dl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/video-dl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/video-dl/agent.md"
  }
}
```
## Documentation

### Video Downloader

Download videos from almost any website using yt-dlp.

### Supported Sites

YouTube, Reddit, Twitter/X, TikTok, Instagram, Vimeo, Facebook, Twitch, and 1000+ others. Full list: https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md

### Quick Download (best quality)

{baseDir}/scripts/download.sh "URL"

Downloads to ~/Downloads/videos/ with best quality.

### With Options

{baseDir}/scripts/download.sh "URL" [OPTIONS]

Common options:

--audio-only - Extract audio only (mp3)
--720p - Limit to 720p max
--1080p - Limit to 1080p max
--output DIR - Custom output directory
--filename NAME - Custom filename (without extension)

### Examples

# Download YouTube video (best quality)
{baseDir}/scripts/download.sh "https://www.youtube.com/watch?v=dQw4w9WgXcQ"

# Download Reddit video
{baseDir}/scripts/download.sh "https://www.reddit.com/r/videos/comments/abc123/cool_video/"

# Extract audio only
{baseDir}/scripts/download.sh "https://www.youtube.com/watch?v=dQw4w9WgXcQ" --audio-only

# Download to specific folder
{baseDir}/scripts/download.sh "URL" --output ~/Videos/projects

# Custom filename
{baseDir}/scripts/download.sh "URL" --filename "my-video"

### Output

Default location: ~/Downloads/videos/
Filename format: {title}-{id}.{ext}
Returns full path to downloaded file on success

### Notes

Reddit videos require merging video+audio (handled automatically)
Age-restricted YouTube videos may require cookies (not currently configured)
Very long videos may take time; script shows progress
If download fails, check if the site is supported or if the video is private/deleted

### Sending to Telegram

Large videos need compression for Telegram's 16MB limit. For long videos:

Download the video normally
Run compression in background:
nohup {baseDir}/scripts/compress-and-send.sh "/path/to/video.mp4" "CHAT_ID" > /tmp/compress.log 2>&1 &


Check back after estimated time (duration ÷ 4)
Send the resulting -telegram.mp4 file

This avoids spamming the chat with progress updates.

### Direct yt-dlp Access

For advanced usage, yt-dlp is available at ~/.local/bin/yt-dlp (updated) or /usr/bin/yt-dlp. See yt-dlp --help for all options.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dimitryvin
- Version: 1.1.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-05-10T16:32:20.675Z
- Expires at: 2026-05-17T16:32:20.675Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/video-dl)
- [Send to Agent page](https://openagent3.xyz/skills/video-dl/agent)
- [JSON manifest](https://openagent3.xyz/skills/video-dl/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/video-dl/agent.md)
- [Download page](https://openagent3.xyz/downloads/video-dl)