Agent skill · Media & Video

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill youtube-processor --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
Allowed tools: ReadBashWriteGlobWebFetch
Path: skills/analysis/youtube-processor/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

# 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/tool

What's inside
Steps it walks through
  1. What This Does
  2. When to Use
  3. Location
  4. How It Works
  5. Instructions
  6. Which Method to Use
  7. Step 1a: Extract Transcript (Claude Code)
  8. Step 1b: Extract Transcript (Claude.ai / Mac Client)
  9. Step 2: Summarize the Transcript
  10. Step 3: Format for Obsidian
  11. Step 4: Save (Optional)
  12. Error Handling
  13. Examples
  14. Example 1: Quick Summary
Ships with 1 file
  • metadata.json
Commands it runs
cd /Users/eddale/Documents/GitHub/powerhouse-lab/skills/youtube-processor/tools && \
python3 get_transcript.py --url "[URL]"
python3 get_transcript.py --url "[URL]" --json
pip3 install youtube-transcript-api
More from claude-skill-registry
All skills →
About this skill
What does the youtube-processor 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.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill youtube-processor --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