.claude/skills/yt-transcript/SKILL.md
Extract transcript from a YouTube video as clean readable text. Use when user shares a youtube.com or youtu.be link and wants the transcript, content summary, or to read what was said.
npx skillsauth add RonanCodes/llm-wiki yt-transcriptInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Extract auto-generated or manual subtitles from YouTube videos as clean text.
/yt-transcript https://www.youtube.com/watch?v=abc123
Extract video ID from $ARGUMENTS:
youtube.com/watch?v={id}, youtu.be/{id}, youtube.com/live/{id}Download subtitles with yt-dlp:
yt-dlp --write-auto-sub --sub-lang en --skip-download --sub-format srt \
-o '/tmp/yt-transcript-{id}' '$ARGUMENTS'
sed '/^[0-9]*$/d; /^$/d; /-->/d' '/tmp/yt-transcript-{id}.en.srt' \
| awk '!seen[$0]++' \
> '/tmp/yt-transcript-{id}.txt'
Read and display the cleaned transcript.
If the user wants a summary, provide one. Otherwise display the full transcript.
--sub-lang en,en-US or list available: yt-dlp --list-subs --skip-download {url}brew install yt-dlp or pip install yt-dlp)development
Page type templates and frontmatter conventions for LLM Wiki pages. Reference skill loaded by ingest, query, and lint skills to ensure consistent wiki structure.
testing
Show status of all LLM Wiki vaults — page counts, source counts, last activity, and git status. Use when user wants to see vault status, list vaults, or check wiki health.
documentation
Import an existing Obsidian vault, markdown folder, or git repo as an llm-wiki vault. Moves content into vaults/, adds missing structure (index, log, CLAUDE.md, frontmatter). Use when user wants to import, adopt, migrate, or bring in an existing knowledge base.
documentation
Create a new LLM Wiki vault with proper directory structure, index, log, and conventions. Use when user wants to create a vault, start a new wiki, or set up a new knowledge base.