Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

youtube-summarizerYouTube 总结器

Agent Skill

youtube-summarizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,714

周安装

70

GitHub Stars

261

下载量

549
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:youtube-summarizer(YouTube 总结器)
来源仓库:https://github.com/brianrwagner/ai-marketing-claude-code-skills
仓库路径:skills/youtube-summarizer
安装命令:
npx skills add https://github.com/brianrwagner/ai-marketing-claude-code-skills --skill youtube-summarizer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/brianrwagner/ai-marketing-claude-code-skills --skill youtube-summarizer

简介

youtube-summarizer 自动获取视频字幕并生成结构化摘要,支持内容再利用规划。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中提取知识要点与制作衍生素材。
  • 输出包含论点、洞察与章节划分的完整总结,适配笔记整理与二次创作场景。
  • 依赖 YouTube 公开字幕可用性,部分视频可能缺少转录文本导致功能受限。
  • 建议优先选择带字幕上传的视频,并注明来源以避免版权争议。

SKILL.md

YouTube Summarizer Skill

Automatically fetch transcripts from YouTube videos, generate structured summaries, and deliver full transcripts to messaging platforms.

Mode

Detect from context or ask: *"Quick TL;DR, full summary, or full summary with content angles?"*

ModeWhat you getBest for
quick3-bullet TL;DR + single key takeawayFast consumption, sharing a clip
standardFull structured summary: thesis, insights, takeawayLearning, note-taking, research
deepFull summary + chapter breakdown + content repurposing opportunitiesTurning a video into a content asset

Default: standard — use quick if they just want the gist. Use deep if they want to extract the video into usable content.


Why This vs ChatGPT?

Problem with ChatGPT: It can't access YouTube transcripts directly. You have to manually copy/paste captions or use a third-party tool first, then feed the text to ChatGPT. Multi-step, clunky, loses video metadata.

This skill provides:

  1. One-step transcript extraction - Drop a YouTube URL, get the full transcript automatically
  2. Structured summarization - Consistent format (thesis → insights → takeaway) every time, not random bullet points
  3. Video metadata included - Title, channel, views, publish date embedded in summary
  4. Full transcript delivery - Saves timestamped transcript to file and sends to Telegram/chat platforms
  5. Works from VPS/cloud - Uses Android client emulation to bypass YouTube's cloud IP blocking (where yt-dlp fails)
  6. Multi-language support - Auto-fetches in requested language with English fallback

You can replicate this by manually enabling captions, copying text, pasting to ChatGPT, reformatting the output, saving to a file, and uploading. Takes 5-10 minutes. This skill does it in 15-20 seconds.

When to Use

Activate this skill when:

  • User shares a YouTube URL (youtube.com/watch, youtu.be, youtube.com/shorts)
  • User asks to summarize or transcribe a YouTube video
  • User requests information about a YouTube video's content
  • You need to analyze video content for research or content creation

Dependencies

Required: MCP YouTube Transcript server must be installed at: /root/clawd/mcp-server-youtube-transcript

If not present, install it:

cd /root/clawd
git clone https://github.com/kimtaeyoon83/mcp-server-youtube-transcript.git
cd mcp-server-youtube-transcript
npm install && npm run build

Workflow

1. Detect YouTube URL

Extract video ID from these patterns:

  • https://www.youtube.com/watch?v=VIDEO_ID
  • https://youtu.be/VIDEO_ID
  • https://www.youtube.com/shorts/VIDEO_ID
  • Direct video ID: VIDEO_ID (11 characters)

2. Fetch Transcript

Run this command to get the transcript:

cd /root/clawd/mcp-server-youtube-transcript && node --input-type=module -e "
import { getSubtitles } from './dist/youtube-fetcher.js';
const result = await getSubtitles({ videoID: 'VIDEO_ID', lang: 'en' });
console.log(JSON.stringify(result, null, 2));
" > /tmp/yt-transcript.json

Replace VIDEO_ID with the extracted ID. Read the output from /tmp/yt-transcript.json.

3. Process the Data

Parse the JSON to extract:

  • result.metadata.title - Video title
  • result.metadata.author - Channel name
  • result.metadata.viewCount - Formatted view count
  • result.metadata.publishDate - Publication date
  • result.actualLang - Language used
  • result.lines - Array of transcript segments

Full text: result.lines.map(l => l.text).join(' ')

4. Generate Summary

Create a structured summary using this template:

📹 **Video:** [title]
👤 **Channel:** [author] | 👁️ **Views:** [views] | 📅 **Published:** [date]

**🎯 Main Thesis:**
[1-2 sentence core argument/message]

**💡 Key Insights:**
- [insight 1]
- [insight 2]
- [insight 3]
- [insight 4]
- [insight 5]

**📝 Notable Points:**
- [additional point 1]
- [additional point 2]

**🔑 Takeaway:**
[Practical application or conclusion]

Aim for:

  • Main thesis: 1-2 sentences maximum
  • Key insights: 3-5 bullets, each 1-2 sentences
  • Notable points: 2-4 supporting details
  • Takeaway: Actionable conclusion

5. Save Full Transcript

Save the complete transcript to a timestamped file:

/root/clawd/transcripts/YYYY-MM-DD_VIDEO_ID.txt

Include in the file:

  • Video metadata header (title, channel, URL, date)
  • Full transcript text
  • URL reference for easy lookup

6. Platform-Specific Delivery

If channel is Telegram:

message --action send --channel telegram --target CHAT_ID \
  --filePath /root/clawd/transcripts/YYYY-MM-DD_VIDEO_ID.txt \
  --caption "📄 YouTube Transcript: [title]"

If channel is other/webchat: Just reply with the summary (no file attachment).

7. Reply with Summary

Send the structured summary as your response to the user.

Real Case Study

User: Content creator researching competitor YouTube strategies

Challenge: Needed to analyze 20+ competitor videos per week to identify trending topics, messaging patterns, and content gaps. Manual process: watch video, take notes, transcribe key quotes. Time: 30-45 min per video.

Solution with youtube-summarizer:

  1. Drop YouTube URL in chat
  2. Get structured summary in 20 seconds
  3. Full transcript saved for reference
  4. Copy key insights for content planning doc

Workflow example:

User: Analyze this video: https://youtube.com/watch?v=abc123
[20 seconds later]

📹 Video: "10 AI Tools That Will Replace Your Job in 2026"
👤 Channel: TechFuturist | 👁️ Views: 847K | 📅 Published: Jan 12, 2026

🎯 Main Thesis:
AI tools are automating creative and knowledge work faster than expected, but the real opportunity is in augmentation, not replacement.

💡 Key Insights:
- ChatGPT usage among marketers jumped from 12% to 67% in one year
- Video editing time reduced by 80% using AI tools like Descript
- The biggest wins come from combining tools (Notion + Claude + Zapier)
- Companies hiring "AI workflow designers" to optimize human-AI collaboration
- Workers using AI secretly outperform peers by 40% (BCG study)

📝 Notable Points:
- Shows examples of 3 small businesses that 10× output with AI
- Warns against over-automation: "AI can write, but can't think strategically"

🔑 Takeaway:
Don't ask "Will AI replace me?" Ask "How can I use AI to become 10× more valuable?"

Results after 8 weeks:

  • Time saved: 25 hours/week (from 600 min to 60 min for 20 videos)
  • Content output: 3 videos/week (up from 1/week)
  • Better insights: Full transcripts searchable, found patterns missed when just watching
  • Competitive intel: Built database of 160+ competitor video summaries with key quotes
  • ROI quote: "This skill turned competitor research from a chore into an assembly line."

Why This Beats Manual Methods

MethodTimeGets MetadataStructured OutputSearchable ArchiveCloud-Friendly
Watch + take notes30-45 minNoNoManual onlyN/A
YouTube transcript feature5 minNoNoNoYes
yt-dlp2-5 minYesNoYes❌ Blocked on VPS
Copy to ChatGPT10 minNoSometimesNoYes
This skill20 secYesYesYes✅ Works on VPS

Error Handling

If transcript fetch fails:

  • Check if video has captions enabled
  • Try with lang: 'en' fallback if requested language unavailable
  • Inform user that transcript is not available and suggest alternatives:

- Manual YouTube transcript feature (Settings → Show transcript) - Video may not have captions - Try a different video

If MCP server not installed:

  • Provide installation instructions
  • Offer to install it automatically if in appropriate context

If video ID extraction fails:

  • Ask user to provide the full YouTube URL or video ID

If video is age-restricted or private:

  • Inform user that transcript cannot be accessed due to restrictions
  • Suggest checking video privacy settings

Examples

Example 1: Tech Tutorial

Input: https://youtube.com/watch?v=dQw4w9WgXcQ

Output:

📹 **Video:** "Building a SaaS from Scratch: Lessons from $10K MRR"
👤 **Channel:** IndieHackerTV | 👁️ **Views:** 124K | 📅 **Published:** Feb 1, 2026

**🎯 Main Thesis:**
Most SaaS founders fail because they build for 6 months before talking to customers. The path to $10K MRR is customer conversations first, MVP second.

**💡 Key Insights:**
- Interviewed 50 potential customers before writing a single line of code
- First paid customer signed up with a Figma mockup (no product built yet)
- Charged $99/month from day 1 (no free tier, no discounts)
- Spent $0 on ads; all growth from Twitter + Reddit engagement
- Hit $10K MRR in 9 months by saying "no" to feature requests that didn't fit ICP

**📝 Notable Points:**
- Used Stripe payment links before building a billing system
- First 3 customers came from solving their problem in public on Twitter
- Weekly "build in public" updates on Twitter drove 40% of signups

**🔑 Takeaway:**
Validate demand before building. If 10 people won't pay for a mockup, 1,000 won't pay for the real product.

Example 2: Business Strategy Video

Input: https://youtu.be/abc123xyz

Output:

📹 **Video:** "Why Notion's Business Model is Genius"
👤 **Channel:** SaaS Breakdowns | 👁️ **Views:** 456K | 📅 **Published:** Jan 28, 2026

**🎯 Main Thesis:**
Notion's growth strategy flips traditional SaaS: give away the product for free to individuals, monetize when they bring it to work.

**💡 Key Insights:**
- 80% of Notion's enterprise deals started with a single employee using the free plan
- Bottom-up adoption = zero sales team needed for first $10M ARR
- Templates marketplace created a content flywheel (100K+ free templates)
- Personal use (free) → Team use (paid) conversion rate: 23% (industry avg: 2-5%)
- Community evangelism replaced traditional marketing (4M+ Reddit/Discord members)

**📝 Notable Points:**
- Notion's viral coefficient: 1.4 (every user invites 1.4 others on average)
- Template creators drive 30% of new user acquisition
- Pricing strategy: free until 10 people = no friction to start

**🔑 Takeaway:**
Build a product individuals love first. Enterprise sales will follow when employees demand it at work.

Quality Guidelines

  • Be concise: Summary should be scannable in 30 seconds
  • Be accurate: Don't add information not in the transcript
  • Be structured: Use consistent formatting for easy reading
  • Be contextual: Adjust detail level based on video length

- Short videos (<5 min): Brief summary (3 key insights) - Medium videos (5-30 min): Standard format (5 key insights) - Long videos (>30 min): Detailed breakdown (7+ insights, split into sections if needed)

  • Extract value: Focus on actionable insights, data points, and contrarian takes (not generic advice)

Pro Tips

For Better Summaries:

  1. Prioritize data points - Numbers, percentages, study citations stand out
  2. Extract quotes - Memorable one-liners make summaries shareable
  3. Identify frameworks - If video presents a method/process, extract the steps
  4. Spot contrarian takes - Unconventional wisdom is more valuable than common advice
  5. Note proof - Examples, case studies, before/after results add credibility

For Research Workflows:

  1. Build a transcript library - Organize by topic/niche for pattern spotting
  2. Search across transcripts - Use grep or text search to find mentions of specific topics
  3. Track trends - Same topic across multiple videos = rising trend
  4. Extract prompts - Save useful frameworks/methods as reusable prompts

For Content Creation:

  1. Find content gaps - What questions are asked but not fully answered?
  2. Analyze top performers - What structure/pacing do high-view videos use?
  3. Extract hooks - First 30 seconds of transcript = proven hook patterns
  4. Repurpose insights - Turn video insights into Twitter threads, blog posts, newsletters

Configuration

Standard Mode (default)

youtube-summarizer [URL]
  • Fetches transcript in English
  • Generates structured summary
  • Saves transcript to file
  • Sends to messaging platform if applicable

Quick Mode

youtube-summarizer [URL] --quick
  • Thesis + 3 key insights only
  • No transcript file saved
  • Faster processing for rapid research

Deep Dive Mode

youtube-summarizer [URL] --deep
  • Extended summary with timestamps
  • Section-by-section breakdown for long videos
  • Includes all notable quotes

Language-Specific

youtube-summarizer [URL] --lang es
  • Fetches transcript in specified language
  • Falls back to English if unavailable

Installation & Setup

# 1. Clone and install MCP server
cd /root/clawd
git clone https://github.com/kimtaeyoon83/mcp-server-youtube-transcript.git
cd mcp-server-youtube-transcript
npm install && npm run build

# 2. Test installation
node --input-type=module -e "
import { getSubtitles } from './dist/youtube-fetcher.js';
const result = await getSubtitles({ videoID: 'dQw4w9WgXcQ', lang: 'en' });
console.log(result.metadata.title);
"

# 3. Create transcripts directory
mkdir -p /root/clawd/transcripts

# 4. Verify skill is ready
youtube-summarizer --check-setup

Common Issues

Issue: "Transcript not available"

  • Cause: Video has no captions/subtitles enabled
  • Fix: Ask video creator to enable captions, or try a different video

Issue: "Failed to fetch transcript" (on VPS)

  • Cause: YouTube may have updated their API
  • Fix: Update MCP server: cd /root/clawd/mcp-server-youtube-transcript && git pull && npm install && npm run build

Issue: "Video ID not recognized"

  • Cause: Malformed URL or unsupported format
  • Fix: Copy URL directly from YouTube address bar

Future Enhancements (Roadmap)

  • Multi-video batch processing (analyze playlists)
  • Sentiment analysis on transcript (positive/negative/neutral tone)
  • Speaker diarization (identify different speakers in interviews/panels)
  • Automatic chapter detection (split long videos into logical sections)
  • Cross-video pattern analysis (find common themes across multiple videos)

Support

Issues or suggestions? Provide:

  • YouTube URL that failed
  • Error message (if any)
  • Expected vs actual behavior
  • MCP server version: cd /root/clawd/mcp-server-youtube-transcript && git rev-parse HEAD

Built on MCP YouTube Transcript server (Android emulation for cloud reliability). Turn any YouTube video into structured, searchable knowledge in 20 seconds.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.96%
按下载量换算186

Claude

28.96%
按下载量换算159

Cursor

20.06%
按下载量换算110

Gemini CLI

9.21%
按下载量换算51

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills