Agent skill · Media & Video

download-anything

Find and download virtually any digital resource from the internet — ebooks, academic papers, movies, TV shows, music, software, images, fonts, courses, and more. Covers both English and Chinese internet ecosystems. Includes CLI tool workflows (yt-dlp, aria2, gallery-dl, spotdl), resource site directories, cloud drive search engines (百度/阿里/夸克网盘搜索), and search techniques (Google dorks). Use when the user wants to: (1) download a video, audio, or media from a URL, (2) find and download an ebook or academic paper, (3) find and download software, (4) search for any digital resource, (5) batch down

hAcKlycgithub.com/hAcKlycGitHub ↗
claude-codeships scriptsAGPL-3.0
Install
npx skills add hAcKlyc/MyAgents --skill download-anything --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 17
SKILL.md size: 6 KB
Bundled scripts: yes
Declared author: MyAgents
Path: bundled-skills/download-anything/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 795
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Download Anything Find it. Download it. Any resource, any format. ## Toolkit ```bash # Install all tools at once bash scripts/install-toolkit.sh ``` | Tool | Install | Purpose | |------|---------|---------| | `yt-dlp` | `brew install yt-dlp` | Video/audio from 1800+ sites | | `aria2c` | `brew install aria2` | Multi-thread downloads, torrents | | `gallery-dl` | `pip3 install gallery-dl` | Batch image/media, 170+ sites | | `spotdl` | `pip3 install spotdl` | Spotify playlists → local files | | `wget` | `brew install wget` | Recursive downloads, site mirroring | | `curl` | pre-installed | HTTP requests, API calls | | `ffmpeg` | `brew install ffmpeg` | Media conversion | | `jq` | `brew install jq` | JSON parsing for automation | ## Decision Tree | Want to download... | Tool / Approach | |---------------------|----------------| | YouTube / social media video | `scripts/dl-video.sh URL` (auto-detects Bilibili cookies) | | Audio from any video URL | `scripts/dl-audio.sh URL` | | Spotify playlist/album/track | `spotdl URL` | | Images from gallery/artist page | `scripts/dl-gallery.sh URL` | | A direct file URL (fast) | `scripts/dl-file.sh URL` (aria2, 16 connections) | | A torrent or magne

What's inside
Steps it walks through
  1. Toolkit
  2. Decision Tree
  3. Scripts
  4. Quick One-Liners
  5. Agent Automation Patterns
  6. Domain Instability
  7. References
Ships with 16 files
  • references/cloud-search.md
  • references/ebooks.md
  • references/education.md
  • references/media-assets.md
  • references/music.md
  • references/search-techniques.md
  • references/software.md
  • references/tools-reference.md
  • references/video.md
  • scripts/dl-audio.sh
  • scripts/dl-file.sh
  • scripts/dl-gallery.sh
  • scripts/dl-subtitle.sh
  • scripts/dl-torrent.sh
  • scripts/dl-video.sh
  • scripts/install-toolkit.sh
Commands it runs
Install all tools at once
bash scripts/install-toolkit.sh
Best quality video
yt-dlp -f "bv*+ba/b" "URL"
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)
More from MyAgents
All skills →
About this skill
What does the download-anything skill do?

Find and download virtually any digital resource from the internet — ebooks, academic papers, movies, TV shows, music, software, images, fonts, courses, and more. Covers both English and Chinese internet ecosystems. Includes CLI tool workflows (yt-dlp, aria2, gallery-dl, spotdl), resource site directories, cloud drive search engines (百度/阿里/夸克网盘搜索), and search techniques (Google dorks). Use when the user wants to: (1) download a video, audio, or media from a URL, (2) find and download an ebook or academic paper, (3) find and download software, (4) search for any digital resource, (5) batch down

How do I install it?

Run `npx skills add hAcKlyc/MyAgents --skill download-anything --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From hAcKlyc/MyAgents, a repository with 795 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going