.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-world/notebooklm-skill
home/skills/claude-world/notebooklm-skill
claude-world avatar

notebooklm-skill

byclaude-world· 43 skills

Stars

387

Forks

52

Category

Research

View on GitHub

TL;DR

Automate source-grounded research with Google NotebookLM. Create notebooks from URLs, text, or local files; ask cited questions; run fast or deep web research; create articles and social drafts; and generate or download audio, video, cinematic video, slides, reports, study guides, quizzes, flashcards, mind maps, infographics, and data tables. Use when a user asks for NotebookLM, cited source analysis, research-to-content workflows, podcasts, slides, study material, artifact generation, RSS digests, or trend research.

How to install notebooklm-skill?

claude-world/notebooklm-skill
$npx -y skills add claude-world/notebooklm-skill --skill notebooklm-skill

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/claude-world/notebooklm-skill" --skill "claude-world/notebooklm-skill"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/claude-world/notebooklm-skill" that are relevant to the current task. Run `npx skills add "https://github.com/claude-world/notebooklm-skill"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# notebooklm-skill
2 
3> Source-grounded NotebookLM automation for terminals and AI agents.
4 
5[![CI](https://github.com/claude-world/notebooklm-skill/actions/workflows/ci.yml/badge.svg)](https://github.com/claude-world/notebooklm-skill/actions/workflows/ci.yml)
6[![PyPI](https://img.shields.io/pypi/v/notebooklm-skill)](https://pypi.org/project/notebooklm-skill/)
7[![Python](https://img.shields.io/pypi/pyversions/notebooklm-skill)](https://pypi.org/project/notebooklm-skill/)
8[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
9 
10[繁體中文](README.zh-TW.md)
11 
12`notebooklm-skill` gives humans and MCP clients one consistent interface for Google
13NotebookLM. It creates notebooks from URLs, raw text, and local files; asks grounded
14questions with citation metadata; completes fast or deep web research; and generates
15or downloads NotebookLM artifacts.
16 
17The project is built around `notebooklm-py` 0.7.x and includes:
18 
19- a JSON-first core CLI;
20- five end-to-end research pipelines;
21- a 13-tool FastMCP server;
22- profile-aware authentication and Skill installers;
23- one shared compatibility layer, so CLI, pipelines, and MCP use the same behavior.
24 
25> This is an unofficial integration with NotebookLM's web API. Google can change the
26> service, availability, quotas, or artifact behavior without notice.
27 
28## Quick start
29 
30### Isolated source install
31 
32The installer creates a dedicated virtual environment, installs Chromium, links five
33commands into `~/.local/bin`, and installs the Claude Code Skill using the standard
34directory layout.
35 
36```bash
37git clone https://github.com/claude-world/notebooklm-skill.git
38cd notebooklm-skill
39./install.sh
40 
41notebooklm-auth setup
42notebooklm-skill list
43```
44 
45Ensure `~/.local/bin` is on `PATH`.
46 
47### PyPI or uvx
48 
49```bash
50# Persistent virtual environment
51python3 -m venv .venv
52source .venv/bin/activate
53python -m pip install notebooklm-skill
54python -m playwright install chromium
55notebooklm-auth setup
56 
57# Or run without a persistent install
58uvx --from notebooklm-skill notebooklm-auth setup
59uvx --from notebooklm-skill notebooklm-skill list
60```
61 
62Direct upstream login is also available:
63 
64```bash
65uvx --from notebooklm-py notebooklm login
66```
67 
68Sessions are profile-aware. Select one with `--profile NAME` before a CLI
69subcommand, or set `NOTEBOOKLM_PROFILE`.
70 
71To use the locally installed Google Chrome instead of bundled Chromium:
72 
73```bash
74notebooklm-auth setup --browser chrome --fresh
75```
76 
77## Core CLI
78 
79All successful commands print structured JSON to stdout. Diagnostics go to stderr;
80authentication errors return exit code 4 and argument errors return exit code 2.
81 
82```bash
83# Mixed-source ingestion with truthful per-source outcomes
84notebooklm-skill create \
85 --title "Research" \
86 --sources https://example.com/article \
87 --files ./paper.pdf \
88 --text-sources "Interview notes" \
89 --strict
90 
91notebooklm-skill ask \
92 --notebook "Research" \
93 --query "Which conclusions have the strongest evidence?"
94 
95notebooklm-skill research \
96 --notebook "Research" \
97 --query "Recent independent evaluations" \
98 --mode deep --max-sources 10
99 
100notebooklm-skill generate \
101 --notebook "Research" \
102 --type slides --lang zh-TW \
103 --output ./output/deck.pptx --output-format pptx
104 
105notebooklm-skill list-artifacts --notebook "Research" --type slides
106```
107 
108Commands resolve an exact ID, unique title, or unique title substring. Use IDs for
109repeatable automation. Deletes require `--yes`; downloads refuse existing files or
110symlinks unless an explicit safe overwrite is requested with `--force`.
111 
112### Artifact types
113 
114| Type | Default download | Notes |
115|---|---:|---|
116| `audio` | M4A | deep-dive, brief, critique, or debate |
117| `video` | MP4 | explainer/brief and multiple visual styles |
118| `cinematic` | MP4 | cinematic video workflow |
119| `slides` | PDF | PDF or PPTX |
120| `report` | Markdown | briefing, study guide, blog, or custom |
121| `study-guide` | Markdown | report shortcut |
122| `quiz` | JSON | JSON, Markdown, or HTML |
123| `flashcards` | JSON | JSON, Mark

Preview

claude-world/notebooklm-skillclaude-world/notebooklm-skill

$ npx -y skills add claude-world/notebooklm-skill --skill notebooklm-skill

▸ installing to .claude/skills…

✓ notebooklm-skill ready

Repoclaude-world/notebooklm-skill
TypeSkills
CategoryResearch
ForResearcherAnalystContent Creator
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarresearchInvestigate a question against high-trust primary sources and capture the findings as a Markdown file in the repo.SkillsJul 2026183k189k
  2. lllllllama avataranalyze-projectRigor Analyze / Rigor Audit read-only skill for deep learning research repositories.SkillsJul 2026176k512
  3. lllllllama avatarpaper-context-resolverRigor Paper Context helper for README-first deep learning repo reproduction.SkillsJul 2026176k512
  4. lllllllama avatarrepo-intake-and-planRigor Intake helper for README-first deep learning repo reproduction.SkillsJul 2026176k512
  5. firecrawl avatarfirecrawl-searchWeb search with full page content extraction. Use this skill whenever the user asks to search the web, find articles, research a topic, look something up, find…SkillsJul 202677k539
  6. coreyhaines31 avatarcustomer-researchWhen the user wants to conduct, analyze, or synthesize customer research.SkillsJul 202671k42k