youtube-processor

Process YouTube videos into summarized Obsidian notes. Use when given a YouTube URL to summarize, extract insights, or turn videos into notes. Triggers on "summarize this video", "process this YouTube", "what's this video about", or any YouTube URL shared for processing.

151 stars

Best use case

youtube-processor is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Process YouTube videos into summarized Obsidian notes. Use when given a YouTube URL to summarize, extract insights, or turn videos into notes. Triggers on "summarize this video", "process this YouTube", "what's this video about", or any YouTube URL shared for processing.

Teams using youtube-processor should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/youtube-processor/SKILL.md --create-dirs "https://raw.githubusercontent.com/nicepkg/ai-workflow/main/workflows/content-creator-workflow/.claude/skills/youtube-processor/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/youtube-processor/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How youtube-processor Compares

Feature / Agentyoutube-processorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Process YouTube videos into summarized Obsidian notes. Use when given a YouTube URL to summarize, extract insights, or turn videos into notes. Triggers on "summarize this video", "process this YouTube", "what's this video about", or any YouTube URL shared for processing.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# YouTube Processor

## What This Does

Takes a YouTube URL, extracts the transcript, and you (Claude) summarize it. Outputs Obsidian-ready markdown. Zero friction: share a link, get actionable notes.

## When to Use

- "Summarize this video: [URL]"
- "Turn this YouTube into notes"
- "What's this video about?"
- "Process this for my newsletter"
- Any YouTube URL shared for processing

## Location

This skill's tools live at:
```
/Users/eddale/Documents/GitHub/powerhouse-lab/skills/youtube-processor/tools/
```

## How It Works

**Step 1:** Python extracts the transcript (no API key needed)
**Step 2:** You (Claude) summarize using your intelligence + context
**Step 3:** You write the Obsidian-formatted output

This approach means you can use mission-context, newsletter-coach, and other skills during summarization.

---

## Instructions

### Which Method to Use

| Environment | Method |
|-------------|--------|
| **Claude Code** | Local Python script (Step 1a) |
| **Claude.ai / Mac Client** | API via WebFetch (Step 1b) |

---

### Step 1a: Extract Transcript (Claude Code)

Run the Python tool to get the transcript:

```bash
cd /Users/eddale/Documents/GitHub/powerhouse-lab/skills/youtube-processor/tools && \
python3 get_transcript.py --url "[URL]"
```

For JSON output (easier to parse):
```bash
python3 get_transcript.py --url "[URL]" --json
```

### Step 1b: Extract Transcript (Claude.ai / Mac Client)

Use the API endpoint via WebFetch:

```
WebFetch: https://youtube-processor-eight.vercel.app/transcript?url=[VIDEO_URL]
```

The API returns JSON:
```json
{
  "success": true,
  "video_id": "abc123",
  "language": "en",
  "transcript": "...",
  "char_count": 5000,
  "word_count": 850
}
```

**Example prompt for WebFetch:**
"Extract the transcript text from the response"

---

### Step 2: Summarize the Transcript

Once you have the transcript, summarize it based on what the user needs:

**Quick Summary:**
- Headline (1 sentence)
- Key points (3-5 bullets)
- Main takeaway

**Detailed Analysis:**
- Headline summary
- Key points with context
- Main takeaways
- Action items mentioned
- How this relates to Ed's work (if relevant)

**Newsletter Mining:**
- Hook ideas for an article
- Core insight/framework
- Story beats for anecdotes
- Takeaways for readers
- Newsletter angle for The Little Blue Report

### Step 3: Format for Obsidian

Create markdown with this structure:

```markdown
---
source: YouTube
video_id: [ID]
url: [URL]
processed: [YYYY-MM-DD HH:MM]
tags: [youtube, video-notes]
---

# [Video Title or Topic]

**Link**: [URL]
**Processed**: [Date]

## Summary

[Your summary here]

---

## Full Transcript

[The transcript]

---

_Generated by youtube-processor skill_
```

### Step 4: Save (Optional)

Save to Ed's Zettelkasten:
```
/Users/eddale/Documents/COPYobsidian/MAGI/Zettelkasten/
```

Filename format: `YT - [Topic] - YYYY-MM-DD.md`

---

## Error Handling

| Error | Meaning | What to Do |
|-------|---------|------------|
| "Transcripts disabled" | Creator turned off captions | Video can't be processed |
| "No transcript found" | No English captions available | Try a different video |
| "Video unavailable" | Private, deleted, or age-restricted | Check the URL |

---

## Examples

### Example 1: Quick Summary

**User says:**
```
Summarize this: https://www.youtube.com/watch?v=VIDEO_ID
```

**You do:**
1. Run: `python3 get_transcript.py --url "https://www.youtube.com/watch?v=VIDEO_ID"`
2. Read the transcript output
3. Provide a summary to the user

### Example 2: Save to Obsidian

**User says:**
```
Turn this video into notes and save it: [URL]
```

**You do:**
1. Extract transcript with the Python tool
2. Summarize the content
3. Format as Obsidian markdown
4. Use Write tool to save to Zettelkasten
5. Confirm: "Saved to [filepath]"

### Example 3: Newsletter Mining

**User says:**
```
I want to write about this video for the newsletter: [URL]
```

**You do:**
1. Extract transcript
2. Analyze for newsletter angles (hooks, insights, story beats)
3. Present the angles
4. Offer to hand off to newsletter-coach skill

---

## Integration Points

- **newsletter-coach**: After extracting video insights, hand off for article development
- **mission-context**: Use Ed's voice and style when summarizing
- **task-clarity-scanner**: Action items from videos can be added to daily notes

---

## Dependencies

The Python tool requires:
```
youtube-transcript-api
```

Install if needed:
```bash
pip3 install youtube-transcript-api
```

---

## Version History

| Version | Date | Changes |
|---------|------|---------|
| 1.1 | 2026-01-03 | Added Vercel API for Claude.ai/Mac client support |
| 1.0 | 2026-01-02 | Initial build with transcript extraction |

## Notes & Learnings

- youtube-transcript-api works without API keys
- Most videos have auto-generated English captions
- Claude doing the summarization is better than Python calling the API (can use context)
- ~3-5 second transcript extraction for typical videos

Related Skills

youtube-to-markdown

151
from nicepkg/ai-workflow

Use when user asks YouTube video extraction, get, fetch, transcripts, subtitles, or captions. Writes video details and transcription into structured markdown file.

youtube-seo-optimizer

151
from nicepkg/ai-workflow

Optimize YouTube videos for search and discovery. Generates SEO-optimized titles, descriptions, tags, hashtags, and chapters. Includes keyword research and competitor analysis. Use when publishing videos, improving discoverability, or optimizing existing content.

youtube-downloader

151
from nicepkg/ai-workflow

Download YouTube videos with customizable quality and format options. Use this skill when the user asks to download, save, or grab YouTube videos. Supports various quality settings (best, 1080p, 720p, 480p, 360p), multiple formats (mp4, webm, mkv), and audio-only downloads as MP3.

youtube-transcript

151
from nicepkg/ai-workflow

Download YouTube video transcripts when user provides a YouTube URL or asks to download/get/fetch a transcript from YouTube. Also use when user wants to transcribe or get captions/subtitles from a YouTube video.

webfluence

151
from nicepkg/ai-workflow

Content web architecture framework. Use when diagnosing offer doc usage, content-to-conversion pathways, or why someone isn't getting sales despite traffic.

video-to-gif

151
from nicepkg/ai-workflow

Convert video clips to optimized GIFs with speed control, cropping, text overlays, and file size optimization. Create perfect GIFs for social media, documentation, and presentations.

video-title-optimizer

151
from nicepkg/ai-workflow

Optimize video titles for maximum click-through rate (CTR) and YouTube/TikTok SEO. Generates multiple title variations balancing curiosity, keywords, and platform best practices. Use when naming videos, improving CTR, or A/B testing titles.

video-script-writer

151
from nicepkg/ai-workflow

Write engaging video scripts for YouTube, TikTok, and other platforms. Creates complete scripts with hooks, main content, and CTAs. Supports various formats including tutorials, vlogs, reviews, explainers, and storytelling. Use when creating video scripts, writing YouTube content, or planning video structure.

video-script-collaborial

151
from nicepkg/ai-workflow

将视频脚本转换为更适合实际录制的口语化表达,去除书面化语言,增加自然感和亲和力。当用户提到"视频脚本"、"录制"、"口语化"、"自然一点"、"像说话一样"、"太书面了"时使用此技能。

video-hook-generator

151
from nicepkg/ai-workflow

Generate attention-grabbing hooks for the first 3 seconds of videos. The hook determines if viewers stay or scroll. Creates multiple hook variations for A/B testing. Use when crafting video openings, improving retention, or creating scroll-stopping content for YouTube, TikTok, or Reels.

video-comparer

151
from nicepkg/ai-workflow

This skill should be used when comparing two videos to analyze compression results or quality differences. Generates interactive HTML reports with quality metrics (PSNR, SSIM) and frame-by-frame visual comparisons. Triggers when users mention "compare videos", "video quality", "compression analysis", "before/after compression", or request quality assessment of compressed videos.

video-analytics-interpreter

151
from nicepkg/ai-workflow

Interpret YouTube Analytics, TikTok Analytics, and video performance data. Identifies trends, explains metrics, and provides actionable recommendations for growth. Use when analyzing video performance, understanding metrics, or optimizing channel strategy.