youtube-ai-digest
Browses AI-related YouTube videos from subscribed channels, fetches transcripts, generates summaries, and creates Markdown reports. Use when the user mentions YouTube AI videos, video summaries, channel subscriptions, or asks about recent AI content from YouTube creators.
Best use case
youtube-ai-digest is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Browses AI-related YouTube videos from subscribed channels, fetches transcripts, generates summaries, and creates Markdown reports. Use when the user mentions YouTube AI videos, video summaries, channel subscriptions, or asks about recent AI content from YouTube creators.
Teams using youtube-ai-digest 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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/youtube-ai-digest/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How youtube-ai-digest Compares
| Feature / Agent | youtube-ai-digest | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Browses AI-related YouTube videos from subscribed channels, fetches transcripts, generates summaries, and creates Markdown reports. Use when the user mentions YouTube AI videos, video summaries, channel subscriptions, or asks about recent AI content from YouTube creators.
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 AI Digest
Browse subscribed YouTube channels for AI-related videos, extract transcripts, and generate structured Markdown reports.
## Prerequisites
- Python 3.9+
- yt-dlp (`pip install yt-dlp`)
## Quick Start
### 1. Fetch Recent Videos
```bash
python scripts/fetch_videos.py --days 7 --keyword AI
```
Output: `data/videos.json` with filtered video list.
### 2. Get Transcript
```bash
python scripts/get_transcript.py --video-id VIDEO_ID
```
Output: `data/transcript_{VIDEO_ID}.txt` and `.json`.
### 3. Generate Report
```bash
python scripts/generate_report.py --video-id VIDEO_ID --summary "Your summary here"
```
Output: `data/output/{VIDEO_ID}/report.md` with thumbnail.
## Configuration
Edit `data/channels.json` to manage subscribed channels:
```json
{
"channels": [
{"name": "Two Minute Papers", "id": "UCbfYPyITQ-7l4upoX8nvctg"},
{"name": "AI Explained", "id": "UCNJ1Ymd5yFuUPtn21xtRbbw"}
]
}
```
Find channel IDs from YouTube channel URLs: `youtube.com/channel/{CHANNEL_ID}`.
## Workflow
Copy this checklist to track progress:
```
Task Progress:
- [ ] Step 1: Fetch recent videos from channels
- [ ] Step 2: Review video list and select target
- [ ] Step 3: Get transcript for selected video
- [ ] Step 4: Analyze transcript and create summary
- [ ] Step 5: Generate Markdown report
```
**Step 1: Fetch recent videos**
Run `python scripts/fetch_videos.py --days 7` to get videos from the past week.
**Step 2: Review and select**
Check `data/videos.json` for available videos. Select one for analysis.
**Step 3: Get transcript**
Run `python scripts/get_transcript.py --video-id {ID}` to download subtitles.
**Step 4: Analyze and summarize**
Read the transcript file and create a concise summary covering:
- Main topics discussed
- Key insights and takeaways
- Notable timestamps
**Step 5: Generate report**
Run `python scripts/generate_report.py --video-id {ID} --summary "..."` to create the final Markdown report.
## Output Format
```markdown
# [Video Title]

## Video Info
- Channel: [Name]
- Published: [Date]
- Duration: [Length]
- Link: [URL]
## Summary
[AI-generated summary of content]
## Transcript
[Timestamped transcript excerpt]
```
## Scripts Reference
| Script | Purpose | Output |
|--------|---------|--------|
| `fetch_videos.py` | Fetch channel videos | `data/videos.json` |
| `get_transcript.py` | Download subtitles | `data/transcript_*.txt/json` |
| `generate_report.py` | Create Markdown report | `data/output/*/report.md` |
## Error Handling
**No transcript available**: Some videos lack subtitles. Check if auto-generated captions exist.
**Rate limiting**: Add delays between requests if fetching many channels.
**Network issues**: Retry with `--days 1` for fewer results.Related Skills
fetching-youtube-transcripts
Fetch transcripts and subtitles from YouTube videos using youtube-transcript-api. Use when extracting video transcripts, listing available languages, translating captions, or processing YouTube content for summarization or analysis.
digest
Extract insights from transcripts into actionable artifact files.
ai-daily-digest
Daily AI news digest covering technical advances, business news, and engineering impact. Aggregates from research papers, tech blogs, HN, newsletters. Use daily for staying current on AI developments.
youtube-summarizer
Extract transcripts from YouTube videos and generate comprehensive, detailed summaries using intelligent analysis frameworks
youtube-shorts-automation
YouTube Shorts 자동 생성 및 업로드 파이프라인. Deevid AI Agent로 이미지→영상(BGM+음성 포함) 생성 후 YouTube에 업로드. 크론잡으로 매일 자동 실행 가능. Use when generating short-form vertical videos, creating AI-generated video content, uploading to YouTube Shorts, or automating daily video content pipelines.
youtube-automation
Automate YouTube tasks via Rube MCP (Composio): upload videos, manage playlists, search content, get analytics, and handle comments. Always search tools first for current schemas.
Automate YouTube Top-Ten Video Creation with OpenAI and Safe Image Search
Integrates OpenAI API for content generation, Bing Image Search API for safe image retrieval, and Pexels API for video footage. Handles authentication via Bearer token, enforces safe search, formats ChatGPT responses into a top-ten list, and includes error handling for API failures.
ai-digest
Digest AI/tech articles into structured learning documents. Use when user says "digest this article", "/ai-digest", "analyze this AI news", or provides URL/content to summarize.
tech-news-digest
Generate tech news digests with unified source model, quality scoring, and multi-format output. Five-layer data collection from RSS feeds, Twitter/X KOLs, GitHub releases, Reddit, and web search. Pipeline-based scripts with retry mechanisms and deduplication. Supports Discord, email, and markdown templates.
youtube-to-ebook
Transform YouTube videos into beautifully formatted ebook articles with transcripts
api-digest
Use when user asks for digest ("дайджест", "саммари", "что нового", "digest", "summary") - fetches data via API and generates detailed analysis
analyzing-tdigest-metrics
Analyze percentile metrics (tdigest type) using OPAL for latency analysis and SLO tracking. Use when calculating p50, p95, p99 from pre-aggregated duration or latency metrics. Covers the critical double-combine pattern with align + m_tdigest() + tdigest_combine + aggregate. For simple metrics (counts, averages), see aggregating-gauge-metrics skill.