Files
our-claude-skills/custom-skills/52-notebooklm-studio/SKILL.md
Andrew Yim e519a49cc4 feat(skills): bulk-add root SKILL.md to 61 skills (native Agent Skills loadability)
Run the additive migration pass from SKILL-MIGRATION-GUIDE: generate a root SKILL.md
for every skill that lacked one, copied from its desktop/SKILL.md (or code/SKILL.md),
with name set to the directory name and description + body preserved verbatim.

- scripts/migrate_skill_root.py: the reusable, non-destructive migrator (dry-run default).
- 61 new root SKILL.md (desktop source for most; code/SKILL.md for 61/62/92).
- Untouched: 16/17/95 (already had root); desktop/ and code/ packaging left intact.
- All 64 root SKILL.md validate: frontmatter <=1024, kebab name, description present.

Still MANUAL (no SKILL.md source — commands/README only), need hand-authored root SKILL.md:
81-mac-optimizer, 90-reference-curator, 91-multi-agent-guide, 94-dintel-bootstrap.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 01:05:20 +09:00

139 lines
4.0 KiB
Markdown

---
name: 52-notebooklm-studio
description: |
Content generation for NotebookLM Studio artifacts - podcasts, videos, quizzes, flashcards, and more.
Triggers: create podcast, generate video, make quiz, 팟캐스트 만들기, 퀴즈 생성, NotebookLM 스튜디오.
---
# NotebookLM Studio
Generate all NotebookLM Studio content types: audio, video, quizzes, flashcards, slide decks, infographics, mind maps, and data tables.
## Prerequisites
```bash
pip install notebooklm-py
playwright install chromium
notebooklm login
```
## When This Skill Activates
- "Create a podcast about my sources"
- "Generate a video explainer"
- "Make flashcards for studying"
- "Turn this into a quiz"
- Korean: "팟캐스트 만들어줘", "비디오 생성", "퀴즈 만들기"
## Content Types
| Type | Command | Options | Output |
|------|---------|---------|--------|
| **Audio** | `generate audio` | `--format`, `--length`, `--language` | MP3 |
| **Video** | `generate video` | `--style`, `--format` | MP4 |
| **Quiz** | `generate quiz` | `--difficulty`, `--quantity` | JSON/MD/HTML |
| **Flashcards** | `generate flashcards` | `--difficulty`, `--quantity` | JSON/MD/HTML |
| **Slide Deck** | `generate slide-deck` | `--format`, `--length` | PDF |
| **Infographic** | `generate infographic` | `--orientation`, `--detail` | PNG |
| **Mind Map** | `generate mind-map` | (instant) | JSON |
| **Data Table** | `generate data-table` | description required | CSV |
| **Report** | `generate report` | `--format` | Markdown |
## Quick Reference
### Generate Content
```bash
# Audio (podcast)
notebooklm generate audio "Focus on key findings"
notebooklm generate audio --format debate --length longer
# Video
notebooklm generate video --style whiteboard
notebooklm generate video --style anime "Make it fun"
# Quiz & Flashcards
notebooklm generate quiz --difficulty hard --quantity more
notebooklm generate flashcards --quantity standard
# Visual content
notebooklm generate slide-deck --format detailed
notebooklm generate infographic --orientation portrait
notebooklm generate mind-map
# Data extraction
notebooklm generate data-table "Compare all methods mentioned"
notebooklm generate report --format study_guide
```
### Download Artifacts
```bash
# Check status first
notebooklm artifact list
# Download when ready
notebooklm download audio ./podcast.mp3
notebooklm download video ./overview.mp4
notebooklm download quiz --format markdown ./quiz.md
notebooklm download flashcards --format json ./cards.json
notebooklm download slide-deck ./slides.pdf
notebooklm download infographic ./infographic.png
notebooklm download mind-map ./mindmap.json
notebooklm download data-table ./data.csv
```
## Video Styles
| Style | Description |
|-------|-------------|
| `classic` | Standard presentation |
| `whiteboard` | Hand-drawn whiteboard |
| `kawaii` | Cute animated style |
| `anime` | Japanese animation |
| `pixel` | 8-bit pixel art |
| `watercolor` | Painted aesthetic |
| `neon` | Glowing neon effects |
| `paper` | Paper cutout animation |
| `sketch` | Pencil sketch style |
## Audio Formats
| Format | Description |
|--------|-------------|
| `deep-dive` | Comprehensive exploration |
| `brief` | Quick summary |
| `critique` | Critical analysis |
| `debate` | Two-sided discussion |
## Processing Times
| Type | Typical Time | Timeout |
|------|--------------|---------|
| Mind map | Instant | - |
| Quiz/Flashcards | 5-15 min | 900s |
| Audio | 10-20 min | 1200s |
| Video | 15-45 min | 2700s |
## Autonomy Rules
**Auto-run:** `artifact list`, `artifact wait` (in subagent)
**Ask first:** `generate *`, `download *`
## Language Settings
```bash
notebooklm language list # Show 80+ languages
notebooklm language set ja # Japanese
notebooklm language set ko # Korean
notebooklm language set zh_Hans # Simplified Chinese
```
## Error Handling
| Error | Solution |
|-------|----------|
| Rate limited | Wait 5-10 min, retry |
| Generation failed | Check `artifact list`, retry later |
| Download fails | Ensure artifact status is `completed` |