Agent skill · Content & Marketing

youtube-summarizer

Extract transcripts from YouTube videos and generate comprehensive, detailed summaries using intelligent analysis frameworks

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorships scriptsMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill youtube-summarizer --agent claude-code

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

Facts
Files in the skill folder: 5
SKILL.md size: 11 KB
Bundled scripts: yes
Path: skills/youtube-summarizer/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

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

From the SKILL.md

# youtube-summarizer ## Purpose This skill extracts transcripts from YouTube videos and generates comprehensive, verbose summaries using the STAR + R-I-S-E framework. It validates video availability, extracts transcripts using the `youtube-transcript-api` Python library, and produces detailed documentation capturing all insights, arguments, and key points. The skill is designed for users who need thorough content analysis and reference documentation from educational videos, lectures, tutorials, or informational content. ## When to Use This Skill This skill should be used when: - User provides a YouTube video URL and wants a detailed summary - User needs to document video content for reference without rewatching - User wants to extract insights, key points, and arguments from educational content - User needs transcripts from YouTube videos for analysis - User asks to "summarize", "resume", or "extract content" from YouTube videos - User wants comprehensive documentation prioritizing completeness over brevity ## Step 0: Discovery & Setup Before processing videos, validate the environment and dependencies: ```bash # Check if youtube-transcript-api is installed python3 -c "import youtu

What's inside
Steps it walks through
  1. Purpose
  2. When to Use This Skill
  3. Step 0: Discovery & Setup
  4. Main Workflow
  5. Progress Tracking Guidelines
  6. Step 1: Validate YouTube URL
  7. Step 2: Check Video & Transcript Availability
  8. Step 3: Extract Transcript
  9. Step 4: Generate Comprehensive Summary
  10. Step 5: Format and Present Output
  11. Example 2: Missing Dependency
  12. Example 4: Invalid URL
  13. 📊 Executive Summary
  14. Limitations
Ships with 4 files
  • CHANGELOG.md
  • README.md
  • scripts/extract-transcript.py
  • scripts/install-dependencies.sh
Commands it runs
Check if youtube-transcript-api is installed
python3 -c "import youtube_transcript_api" 2>/dev/null
if [ $? -ne 0 ]; then
echo "⚠️  youtube-transcript-api not found"
fi
Check Python availability
if ! command -v python3 &>/dev/null; then
echo "❌ Python 3 is required but not installed"
exit 1
pip install youtube-transcript-api
More from agentic-awesome-skills
All skills →
About this skill
What does the youtube-summarizer skill do?

Extract transcripts from YouTube videos and generate comprehensive, detailed summaries using intelligent analysis frameworks

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill youtube-summarizer --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 sickn33/agentic-awesome-skills, a repository with 44,414 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