Loading...
Loading...
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 download images or media from a gallery/site, (6) download torrents or magnet links, (7) find free stock assets (images, video, audio, fonts), (8) search Chinese cloud drives for resources, or (9) any task involving finding or downloading digital content from the internet.
npx skill4agent add hacklyc/myagents_skills download-anything# Install all tools at once
bash scripts/install-toolkit.sh| Tool | Install | Purpose |
|---|---|---|
| | Video/audio from 1800+ sites |
| | Multi-thread downloads, torrents |
| | Batch image/media, 170+ sites |
| | Spotify playlists → local files |
| | Recursive downloads, site mirroring |
| pre-installed | HTTP requests, API calls |
| | Media conversion |
| | JSON parsing for automation |
| Want to download... | Tool / Approach |
|---|---|
| YouTube / social media video | |
| Audio from any video URL | |
| Spotify playlist/album/track | |
| Images from gallery/artist page | |
| A direct file URL (fast) | |
| A torrent or magnet link | |
| Subtitles for a video | |
| An ebook or paper | → references/ebooks.md |
| A movie or TV show | → references/video.md |
| Music / game soundtracks / OST | → references/music.md |
| Software or app | → references/software.md |
| Stock images/video/audio/fonts | → references/media-assets.md |
| Chinese cloud drive resources | → references/cloud-search.md |
| Online courses | → references/education.md |
| Something else / not sure | → references/search-techniques.md |
scripts/| Script | What it does | Key args |
|---|---|---|
| Install all CLI tools | — |
| Download video (auto cookies for Bilibili) | |
| Extract audio | |
| Fast multi-thread download | 16 connections via aria2 |
| Batch download images | extra args passed to gallery-dl |
| Download torrent/magnet | via aria2 |
| Search & download subtitles | |
# 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"yt-dlp -j URLyt-dlp -f FORMAT URL -o OUTPUTaria2cgallery-dl --dump-json URLgallery-dl -d OUTPUT URLspotdl SPOTIFY_URLyt-dlp -x --audio-format mp3 YOUTUBE_URL[site name] mirror 2026[站名] 最新地址| File | Content |
|---|---|
| ebooks.md | Ebook sites, academic papers, audiobooks, manga, Chinese books |
| video.md | Torrent sites, DDL, subtitles, anime, Chinese video |
| music.md | Free music, download tools, Chinese music, podcasts |
| software.md | Software archives, package managers, Chinese sites |
| media-assets.md | Stock images, video, audio, fonts |
| cloud-search.md | Chinese cloud drive search (百度/阿里/夸克) |
| education.md | Free courses and MOOCs |
| tools-reference.md | Detailed CLI syntax and advanced flags |
| search-techniques.md | Google dorks, search strategies |