From yt-transcript
Fetch a YouTube video transcript and save it as a Markdown file. Use when the user shares a YouTube URL and wants the transcript, or asks to transcribe/capture/grab a YouTube video.
How this skill is triggered — by the user, by Claude, or both
Slash command
/yt-transcript:yt-transcriptThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch a YouTube video's transcript and save it as a clean Markdown document.
Fetch a YouTube video's transcript and save it as a clean Markdown document.
Use the CLI script at ${CLAUDE_PLUGIN_ROOT}/yt_transcript.py. Run it with uv run from the plugin directory:
cd "${CLAUDE_PLUGIN_ROOT}" && uv run python yt_transcript.py [OPTIONS] URL OUTPUT
| Argument | Description |
|---|---|
URL | YouTube video URL or bare 11-char video ID |
OUTPUT | Output filename (e.g. notes/talk.md). .md extension added automatically if missing. |
| Option | Default | Description |
|---|---|---|
--timestamps / --no-timestamps | --timestamps | Include [M:SS] timestamps per line, or merge into clean paragraphs |
--language, -l | en | Transcript language code |
--no-timestamps unless the user explicitly asks for timestamps. Clean paragraphs are better for notes.hnwM01CpzmA.md) in the current working directory.cd "${CLAUDE_PLUGIN_ROOT}" && uv run python yt_transcript.py --no-timestamps "https://www.youtube.com/watch?v=dQw4w9WgXcQ" ~/notes/rick-roll.md
uv is not available, instruct the user to install it.npx claudepluginhub gebl/anvil-skill-marketplace --plugin yt-transcriptFetches transcript/caption text from YouTube videos using youtube-transcript-api. Supports multiple URLs, timestamps, and language fallback.
Downloads YouTube video transcripts as timestamped text files via youtube-transcript-api. Use for extracting transcripts from videos for analysis, documentation, or content review.
Pull a YouTube video transcript into a queryable markdown vault with yt-dlp subtitle discovery, VTT cleanup, metadata frontmatter, and capture-seed stubs.