From sanjay3290-ai-skills
Query and manage Google NotebookLM notebooks with persistent auth, source sync, batch queries, and structured exports. Automates browser-based interaction via Playwright.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sanjay3290-ai-skills:notebooklmThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Query NotebookLM notebooks and manage notebooks/sources via Playwright browser automation.
Query NotebookLM notebooks and manage notebooks/sources via Playwright browser automation.
All commands run from the skill directory. All scripts output JSON to stdout and exit 1 on error. Use --help on any script for full flag reference.
python scripts/auth_manager.py setup --profile <name>python scripts/notebook_manager.py add --url <url> --name <name> --description <desc> --topics <topics>python scripts/ask_question.py --question "..." --notebook-id <id>python scripts/remote_manager.py add-source|sync-sources ...--show-browser for debugging only.~/.config/claude/notebooklm-skill/ (override with NOTEBOOKLM_DATA_DIR).--dry-run available on all destructive/bulk operations (create, add-source, delete-source, sync-sources).--retries N retries transient browser failures with screenshot/HTML artifact capture.--questions "q1||q2||q3") and multi-notebook comparison (--compare-notebook-ids) supported.--export-format markdown --save-notes.# Auth
python scripts/auth_manager.py setup --profile work
python scripts/auth_manager.py status --profile work
# Library
python scripts/notebook_manager.py add --url "..." --name "..." --description "..." --topics "..."
python scripts/notebook_manager.py list
# Ask
python scripts/ask_question.py --question "..." --notebook-id <id>
python scripts/ask_question.py --questions "q1||q2" --notebook-id <id>
# Sources
python scripts/remote_manager.py add-source --notebook-id <id> --dir ./docs --recursive
python scripts/remote_manager.py sync-sources --notebook-id <id> --dir ./docs --recursive --delete-missing --dry-run
For full command reference with all flags and examples, see references/commands.md.
npx claudepluginhub sanjay3290/ai-skillsQueries Google NotebookLM notebooks from Claude Code via browser automation. Returns Gemini-generated answers grounded only in uploaded documents, reducing hallucinations.
Queries Google NotebookLM notebooks from Claude Code for source-grounded, citation-backed answers via Gemini. Includes browser automation, library management, and persistent auth.
Queries Google NotebookLM notebooks for source-grounded Gemini answers using browser automation. Handles auth setup, library management, and document-only responses.