Baoyu YouTube Transcript
Downloads YouTube video transcripts/subtitles and cover images by URL or video ID.
clawhub install jimliu/baoyu-youtube-transcriptExtract text transcripts from YouTube videos via yt-dlp tool
# Install Skill (downloads SKILL.md to .claude/skills/) clawhub install ytdlp-transcript # Then just tell Claude: "use ytdlp-transcript — YouTube to Text via yt-dlp to help me..."
# Same install command — works with all SKILL.md-compatible AI coding tools clawhub install ytdlp-transcript
This Skill is compatible with the OpenClaw standard. After installation, a SKILL.md file is auto-generated, usable by any OpenClaw-compatible AI Agent (Claude Code, Cursor, Windsurf, etc.).
yt-dlp to download auto-generated or manual captions from YouTube.
Supports all languages — defaults to Portuguese (pt), falls back to English (en).yt-dlp installed: brew install yt-dlpnode skills/youtube-transcript/transcript.js <youtube-url-or-id> [lang]
node skills/youtube-transcript/transcript.js https://www.youtube.com/watch?v=LAdJsmTe8LM pt
clawhub run ytdlp-transcript --url "https://www.youtube.com/watch?v=VIDEO_ID" --language auto --output transcript.txt --format jsonDownloads YouTube video transcripts/subtitles and cover images by URL or video ID.
clawhub install jimliu/baoyu-youtube-transcriptReal cold-start runs of this skill on Claude Code and Codex.
Input: Fetch English subtitles of a YouTube video (3Blue1Brown, neural networks; no video download) and clean them into a readable transcript.txt.
Cleaned in one Python pass; correctly chose manual (not auto) captions; output byte-identical to Codex (3357 words).
claude-opus-4-8
35 shell steps probing VTT cleanup command-by-command; correctly chose manual captions; did not download the video.
codex-cli 0.140
Output: transcript.txt — 3357 words; both outputs byte-identical.
Verdict: Correctness tied 5/5 (identical output). Efficiency gap widens on multi-step cleanup: Codex 35 steps vs Claude 11.
Environment: macOS · yt-dlp 2026.06.09 · node / python · symmetric cold start (codex exec vs a fresh Claude Code subagent).