gdoc
Read publicly shared Google Docs using curl to download into a file.
Download YouTube videos, audio, and subtitles/transcripts using yt-dlp.
$ npx -y skills add ykdojo/safeclaw --skill yt-dlp --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/yt-dlpContext preview
The summary Claude sees to decide when to auto-load this skill.
Download YouTube videos, audio, and subtitles/transcripts using yt-dlp.
name: yt-dlp description: Download YouTube videos, audio, and subtitles/transcripts using yt-dlp.
Download YouTube videos, audio, and subtitles/transcripts.
Check if yt-dlp is installed, and download it if not:
if ! command -v yt-dlp &>/dev/null && [ ! -f ~/yt-dlp ]; then curl -sL https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -o ~/yt-dlp && chmod +x ~/yt-dlp fi
Then use `~/yt-dlp` (or just `yt-dlp` if installed globally).
Download subtitles/transcript:
~/yt-dlp --write-auto-sub --sub-lang en --skip-download -o "/tmp/%(id)s" <url>
Download audio only:
~/yt-dlp -x --audio-format mp3 -o "/tmp/%(title)s.%(ext)s" <url>
Download video:
~/yt-dlp -o "/tmp/%(title)s.%(ext)s" <url>
Get video info (title, duration, description):
~/yt-dlp --print title --print duration_string --print description --no-download <url>
The easiest way to run multiple Claude Code sessions, each in its own container, with a dashboard to manage them all. Quick setup with battle-tested sensible defaults and skills. See architecture.md for design details.
Repo: ykdojo/safeclaw