Setup & Installation
openclaw skills install @jqlong17/download-tools
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
npx clawhub install download-tools
What This Skill Does
CLI tools for downloading YouTube audio and WeChat articles to local files. Wraps yt-dlp and curl with simple shell scripts.
Wrapping yt-dlp in a script removes the need to remember flags for common download tasks.
When to use it
- Download a YouTube podcast episode as MP3
- Save a WeChat article for offline reading
- Batch archive YouTube audio from multiple URLs
- Extract audio from a YouTube tutorial
- Back up WeChat content before it gets deleted
Example Workflow
Here's how your AI assistant might use this skill in practice.
INPUT
User runs: ./yt-audio.sh "https://youtube.com/watch?v=xxx" lecture
AGENT
- 1Invokes yt-dlp with the provided YouTube URL
- 2Passes audio extraction flags to output MP3 format
- 3Saves file as lecture.mp3 in the current directory
OUTPUT
lecture.mp3 saved locally