
NotebookLM Skill
β 7,300by pleaseprompto Β· part of PleasePrompto/notebooklm-skill
Let Claude Code chat directly with NotebookLM for source-grounded answers based exclusively on your uploaded documents
Let Claude Code chat directly with NotebookLM for source-grounded answers based exclusively on your uploaded documents
Inspect the full instructions your agent will receiveExpandCollapse
This is the exact playbook injected into your agent when the skill activates β shown here so you can audit it before installing. You don't need to read it to use the skill.
by pleaseprompto
Let Claude Code chat directly with NotebookLM for source-grounded answers based exclusively on your uploaded documents
npx skills add https://github.com/PleasePrompto/notebooklm-skill --skill notebooklm
Download ZIPGitHub7.3k
NotebookLM Web Importer
Import web pages and YouTube videos to NotebookLM with one click. Trusted by 200,000+ users. Install Chrome Extension
NotebookLM Research Assistant Skill
Interact with Google NotebookLM to query documentation with Gemini's source-grounded answers. Each question opens a fresh browser session, retrieves the answer exclusively from your uploaded documents, and closes.
When to Use This Skill
Trigger when user:
-
Mentions NotebookLM explicitly
-
Shares NotebookLM URL (
https://notebooklm.google.com/notebook/...) -
Asks to query their notebooks/documentation
-
Wants to add documentation to NotebookLM library
-
Uses phrases like "ask my NotebookLM", "check my docs", "query my notebook"
β οΈ CRITICAL: Add Command - Smart Discovery
When user wants to add a notebook without providing details:
SMART ADD (Recommended): Query the notebook first to discover its content:
# Step 1: Query the notebook about its content
python scripts/run.py ask_question.py --question "What is the content of this notebook? What topics are covered? Provide a complete overview briefly and concisely" --notebook-url "[URL]"
# Step 2: Use the discovered information to add it
python scripts/run.py notebook_manager.py add --url "[URL]" --name "[Based on content]" --description "[Based on content]" --topics "[Based on content]"
MANUAL ADD: If user provides all details:
-
--url- The NotebookLM URL -
--name- A descriptive name -
--description- What the notebook contains (REQUIRED!) -
--topics- Comma-separated topics (REQUIRED!)
NEVER guess or use generic descriptions! If details missing, use Smart Add to discover them.
Critical: Always Use run.py Wrapper
NEVER call scripts directly. ALWAYS use python scripts/run.py [script]:
# β
CORRECT - Always use run.py:
python scripts/run.py auth_manager.py status
python scripts/run.py notebook_manager.py list
python scripts/run.py ask_question.py --question "..."
# β WRONG - Never call directly:
python scripts/auth_manager.py status # Fails without venv!
The run.py wrapper automatically:
-
Creates
.venvif needed -
Installs all dependencies
-
Activates environment
-
Executes script properly
Core Workflow
Step 1: Check Authentication Status
python scripts/run.py auth_manager.py status
If not authenticated, proceed to setup.
Step 2: Authenticate (One-Time Setup)
# Browser MUST be visible for manual Google login
python scripts/run.py auth_manager.py setup
Important:
-
Browser is VISIBLE for authentication
-
Browser window opens automatically
-
User must manually log in to Google
-
Tell user: "A browser window will open for Google login"
Step 3: Manage Notebook Library
# List all notebooks
python scripts/run.py notebook_manager.py list
# BEFORE ADDING: Ask user for metadata if unknown!
# "What does this notebook contain?"
# "What topics should I tag it with?"
# Add notebook to library (ALL parameters are REQUIRED!)
python scripts/run.py notebook_manager.py add \
--url "https://notebooklm.google.com/notebook/..." \
--name "Descriptive Name" \
--description "What this notebook contains" \ # REQUIRED - ASK USER IF UNKNOWN!
--topics "topic1,topic2,topic3" # REQUIRED - ASK USER IF UNKNOWN!
# Search notebooks by topic
python scripts/run.py notebook_manager.py search --query "keyword"
# Set active notebook
python scripts/run.py notebook_manager.py activate --id notebook-id
# Remove notebook
python scripts/run.py notebook_manager.py remove --id notebook-id
Quick Workflow
-
Check library:
python scripts/run.py notebook_manager.py list -
Ask question:
python scripts/run.py ask_question.py --question "..." --notebook-id ID
Step 4: Ask Questions
# Basic query (uses active notebook if set)
python scripts/run.py ask_question.py --question "Your question here"
# Query specific notebook
python scripts/run.py ask_question.py --question "..." --notebook-id notebook-id
# Query with notebook URL directly
python scripts/run.py ask_question.py --question "..." --notebook-url "https://..."
# Show browser for debugging
python scripts/run.py ask_question.py --question "..." --show-browser
Follow-Up Mechanism (CRITICAL)
Every NotebookLM answer ends with: "EXTREMELY IMPORTANT: Is that ALL you need to know?"
Required Claude Behavior:
-
STOP - Do not immediately respond to user
-
ANALYZE - Compare answer to user's original request
-
IDENTIFY GAPS - Determine if more information needed
-
ASK FOLLOW-UP - If gaps exist, immediately ask:
python scripts/run.py ask_question.py --question "Follow-up with context..."
-
REPEAT - Continue until information is complete
-
SYNTHESIZE - Combine all answers before responding to user
Script Reference
Authentication Management (auth_manager.py)
python scripts/run.py auth_manager.py setup # Initial setup (browser visible)
python scripts/run.py auth_manager.py status # Check authentication
python scripts/run.py auth_manager.py reauth # Re-authenticate (browser visible)
python scripts/run.py auth_manager.py clear # Clear authentication
Notebook Management (notebook_manager.py)
python scripts/run.py notebook_manager.py add --url URL --name NAME --description DESC --topics TOPICS
python scripts/run.py notebook_manager.py list
python scripts/run.py notebook_manager.py search --query QUERY
python scripts/run.py notebook_manager.py activate --id ID
python scripts/run.py notebook_manager.py remove --id ID
python scripts/run.py notebook_manager.py stats
Question Interface (ask_question.py)
python scripts/run.py ask_question.py --question "..." [--notebook-id ID] [--notebook-url URL] [--show-browser]
Data Cleanup (cleanup_manager.py)
python scripts/run.py cleanup_manager.py # Preview cleanup
python scripts/run.py cleanup_manager.py --confirm # Execute cleanup
python scripts/run.py cleanup_manager.py --preserve-library # Keep notebooks
Environment Management
The virtual environment is automatically managed:
-
First run creates
.venvautomatically -
Dependencies install automatically
-
Chromium browser installs automatically
-
Everything isolated in skill directory
Manual setup (only if automatic fails):
python -m venv .venv
source .venv/bin/activate # Linux/Mac
pip install -r requirements.txt
python -m patchright install chromium
Data Storage
All data stored in ~/.claude/skills/notebooklm/data/:
-
library.json- Notebook metadata -
auth_info.json- Authentication status -
browser_state/- Browser cookies and session
Security: Protected by .gitignore, never commit to git.
Decision Flow
User mentions NotebookLM
β
Check auth β python scripts/run.py auth_manager.py status
β
If not authenticated β python scripts/run.py auth_manager.py setup
β
Check/Add notebook β python scripts/run.py notebook_manager.py list/add (with --description)
β
Activate notebook β python scripts/run.py notebook_manager.py activate --id ID
β
Ask question β python scripts/run.py ask_question.py --question "..."
β
See "Is that ALL you need?" β Ask follow-ups until complete
β
Synthesize and respond to user
Best Practices
-
Always use run.py - Handles environment automatically
-
Check auth first - Before any operations
-
Follow-up questions - Don't stop at first answer
-
Browser visible for auth - Required for manual login
-
Include context - Each question is independent
-
Synthesize answers - Combine multiple responses
Resources (Skill Structure)
Important directories and files:
-
scripts/- All automation scripts (ask_question.py, notebook_manager.py, etc.) -
data/- Local storage for authentication and notebook library -
references/- Extended documentation: -
api_reference.md- Detailed API documentation for all scripts -
troubleshooting.md- Common issues and solutions -
usage_patterns.md- Best practices and workflow examples -
.venv/- Isolated Python environment (auto-created on first run) -
.gitignore- Protects sensitive data from being committed
Related Skills
gws-tasks Google
Google Tasks: Manage task lists and tasks.
animation-vocabulary emilkowalski
Reverse-lookup glossary that turns a vague description of a web animation or motion effect into its exact term ("the bouncy thing when a popover opens" β Pop in; "the iOS rubber-band scroll" β Rubber-banding). Use when the user asks "what's it called whenβ¦", or describes a motion effect without knowing its name and wants the right word to prompt an AI or designer with. For naming an effect, not designing or building one. creative design research
write-coding-standards-from-file github
Analyze existing code files to automatically generate a project coding standards document. Extracts syntax patterns (indentation, naming conventions, commenting style, braces, line length) from one or more files or entire folders to establish baseline standards Detects and optionally fixes inconsistencies across files, flagging deviations from the majority pattern in each category Outputs standards to a new file (CONTRIBUTING.md, STYLE.md, CODING_STANDARDS.md, etc.), README.md insertion, or... official
creating-oracle-to-postgres-migration-bug-report github
Creates structured bug reports for defects found during Oracle-to-PostgreSQL migration. Use when documenting behavioral differences between Oracle and⦠official
reproduce-bug n8n-io
Reproduce a bug from a Linear ticket with a failing test. Expects the full ticket context (title, description, comments) to be provided as input. official
true-input factory-ai
Background knowledge for droid-control workflows -- not invoked directly. True-input driver mechanics for real terminal emulator automation via headless⦠official
vercel-composition-patterns supabase
React composition patterns that scale. Use when refactoring components with official
kling-3-0 runcomfy-com
Kling 3.0 video generation on RunComfy. Kling 3.0 (also called Kling V3.0) is Kuaishou Technology's third-generation multi-shot video model with native synchronized audio and consistent character identity across shots. This skill covers all six Kling 3.0 endpoints, spanning three rendering tiers (Standard, Pro, 4K) and two modes (text-to-video, image-to-video). Calls runcomfy run kling/kling-3.0/ / through the local RunComfy CLI. Triggers on "kling", "kling 3.0", "kling v3", "kling pro",... video creative media
python -m venv .venv
source .venv/bin/activate # Linux/Mac
pip install -r requirements.txt
python -m patchright install chromiumRun this in your project β your agent picks the skill up automatically.
Configuration
Optional .env file in skill directory:
HEADLESS=false # Browser visibility
SHOW_BROWSER=false # Default browser display
STEALTH_ENABLED=true # Human-like behavior
TYPING_WPM_MIN=160 # Typing speed
TYPING_WPM_MAX=240
DEFAULT_NOTEBOOK_ID= # Default notebook
Troubleshooting
Problem Solution
ModuleNotFoundError Use run.py wrapper
Authentication fails Browser must be visible for setup! --show-browser
Rate limit (50/day) Wait or switch Google account
Browser crashes python scripts/run.py cleanup_manager.py --preserve-library
Notebook not found Check with notebook_manager.py list
Limitations
-
No session persistence (each question = new browser)
-
Rate limits on free Google accounts (50 queries/day)
-
Manual upload required (user must add docs to NotebookLM)
-
Browser overhead (few seconds per question)