# Send Download Anything 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": "download-anything",
    "name": "Download Anything",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hAcKlyc/download-anything",
    "canonicalUrl": "https://clawhub.ai/hAcKlyc/download-anything",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/download-anything",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=download-anything",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/install-toolkit.sh",
      "scripts/dl-audio.sh",
      "scripts/dl-gallery.sh",
      "scripts/dl-video.sh",
      "scripts/dl-torrent.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/download-anything"
    },
    "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/download-anything",
    "downloadUrl": "https://openagent3.xyz/downloads/download-anything",
    "agentUrl": "https://openagent3.xyz/skills/download-anything/agent",
    "manifestUrl": "https://openagent3.xyz/skills/download-anything/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/download-anything/agent.md"
  }
}
```
## Documentation

### Download Anything

Find it. Download it. Any resource, any format.

### Toolkit

# Install all tools at once
bash scripts/install-toolkit.sh

ToolInstallPurposeyt-dlpbrew install yt-dlpVideo/audio from 1800+ sitesaria2cbrew install aria2Multi-thread downloads, torrentsgallery-dlpip3 install gallery-dlBatch image/media, 170+ sitesspotdlpip3 install spotdlSpotify playlists → local fileswgetbrew install wgetRecursive downloads, site mirroringcurlpre-installedHTTP requests, API callsffmpegbrew install ffmpegMedia conversionjqbrew install jqJSON parsing for automation

### Decision Tree

Want to download...Tool / ApproachYouTube / social media videoscripts/dl-video.sh URL (auto-detects Bilibili cookies)Audio from any video URLscripts/dl-audio.sh URLSpotify playlist/album/trackspotdl URLImages from gallery/artist pagescripts/dl-gallery.sh URLA direct file URL (fast)scripts/dl-file.sh URL (aria2, 16 connections)A torrent or magnet linkscripts/dl-torrent.sh "magnet:..."Subtitles for a videoscripts/dl-subtitle.sh QUERYAn ebook or paper→ references/ebooks.mdA movie or TV show→ references/video.mdMusic / game soundtracks / OST→ references/music.mdSoftware or app→ references/software.mdStock images/video/audio/fonts→ references/media-assets.mdChinese cloud drive resources→ references/cloud-search.mdOnline courses→ references/education.mdSomething else / not sure→ references/search-techniques.md

### Scripts

All in scripts/. Each does one thing. Compose as needed.

ScriptWhat it doesKey argsinstall-toolkit.shInstall all CLI tools—dl-video.sh URL [QUALITY]Download video (auto cookies for Bilibili)best/1080/720/480dl-audio.sh URL [FORMAT]Extract audiomp3/opus/flac/bestdl-file.sh URL [OUTPUT]Fast multi-thread download16 connections via aria2dl-gallery.sh URL [DIR] [ARGS...]Batch download imagesextra args passed to gallery-dldl-torrent.sh MAGNET [DIR]Download torrent/magnetvia aria2dl-subtitle.sh QUERY [LANG]Search & download subtitlesen/zh/ja etc.

### Quick One-Liners

# Best quality video
yt-dlp -f "bv*+ba/b" "URL"

# 1080p video + subtitles
yt-dlp -f "bv[height<=1080]+ba/b" --write-subs --sub-langs "en,zh" "URL"

# Extract audio as MP3
yt-dlp -x --audio-format mp3 "URL"

# Download YouTube playlist
yt-dlp --yes-playlist "URL"

# Fast file download (16 connections)
aria2c -x16 -s16 -k1M "URL"

# Download magnet
aria2c --seed-time=0 "magnet:?xt=..."

# Batch images from gallery
gallery-dl "URL"

# Spotify album → local MP3s
spotdl "SPOTIFY_URL"

# All PDFs from a page
wget -r -l1 -A "*.pdf" "URL"

# Video metadata as JSON (automation)
yt-dlp -j "URL"

# Get direct URL without downloading
yt-dlp -g "URL"

### Agent Automation Patterns

Video pipeline: yt-dlp -j URL → parse JSON → select format → yt-dlp -f FORMAT URL -o OUTPUT

Ebook search: Search Anna's Archive / Z-Library / 鸠摩搜书 → get download page → extract link → aria2c

Bulk media: gallery-dl --dump-json URL → review items → gallery-dl -d OUTPUT URL

Music: spotdl SPOTIFY_URL (auto YouTube match + metadata) or yt-dlp -x --audio-format mp3 YOUTUBE_URL

### Domain Instability

Many resource sites rotate domains. When a URL fails:

Search: [site name] mirror 2026 or [站名] 最新地址
Check Reddit/Twitter for community mirror lists
Anna's Archive = most resilient ebook meta-search
For Chinese cloud search: check 网盘之家导航 for latest links

### References

FileContentebooks.mdEbook sites, academic papers, audiobooks, manga, Chinese booksvideo.mdTorrent sites, DDL, subtitles, anime, Chinese videomusic.mdFree music, download tools, Chinese music, podcastssoftware.mdSoftware archives, package managers, Chinese sitesmedia-assets.mdStock images, video, audio, fontscloud-search.mdChinese cloud drive search (百度/阿里/夸克)education.mdFree courses and MOOCstools-reference.mdDetailed CLI syntax and advanced flagssearch-techniques.mdGoogle dorks, search strategies
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hAcKlyc
- Version: 0.1.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/download-anything)
- [Send to Agent page](https://openagent3.xyz/skills/download-anything/agent)
- [JSON manifest](https://openagent3.xyz/skills/download-anything/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/download-anything/agent.md)
- [Download page](https://openagent3.xyz/downloads/download-anything)