Agent skill · Content & Marketing

youtube-transcript-analyzer

Use when analyzing YouTube videos, extracting insights from tutorials, researching video content, or learning from talks and presentations

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill youtube-transcript-analyzer --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 0.6.0
Path: skills/analysis/youtube-transcript-analyzer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

<objective> Download and analyze YouTube video transcripts to extract insights, understand concepts, and relate content to your work. Uses yt-dlp for reliable transcript extraction with intelligent chunking for long-form content. </objective> <when-to-use> Use when you need to understand how a YouTube video/tutorial relates to your current project, research technical concepts explained in video format, extract key insights from talks or presentations, compare video content with your codebase or approach, or learn from video demonstrations without watching the entire video. </when-to-use> <prerequisites> Ensure yt-dlp is installed: ```bash # Install via pip pip install yt-dlp # Or via homebrew (macOS) brew install yt-dlp # Verify installation yt-dlp --version ``` </prerequisites> <transcript-extraction> Setup temporary directory - IMPORTANT: Always create and use a temporary directory for downloaded files to avoid cluttering the repository: ```bash # Create temporary directory for this analysis ANALYSIS_DIR=$(mktemp -d) echo "Using temporary directory: $ANALYSIS_DIR" ``` Download transcript using yt-dlp to extract subtitles/transcripts to the temporary directory: ```bash # Download

What's inside
Ships with 1 file
  • metadata.json
Commands it runs
Install via pip
pip install yt-dlp
Or via homebrew (macOS)
brew install yt-dlp
Verify installation
yt-dlp --version
Create temporary directory for this analysis
echo "Using temporary directory: $ANALYSIS_DIR"
Download transcript only (no video)
yt-dlp --skip-download --write-auto-sub --sub-format vtt --output "$ANALYSIS_DIR/transcript.%(ext)s" URL
More from claude-skill-registry
All skills →
About this skill
What does the youtube-transcript-analyzer skill do?

Use when analyzing YouTube videos, extracting insights from tutorials, researching video content, or learning from talks and presentations

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill youtube-transcript-analyzer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going