Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

notebooklm-integrationNotebookLM 集成

Agent Skill

notebooklm-integration 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,595

周安装

578

GitHub Stars

1

下载量

4,763
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:notebooklm-integration(NotebookLM 集成)
来源仓库:https://github.com/oki3505f/notebooklm-integration
安装命令:
openclaw skills install notebooklm-integration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install notebooklm-integration

简介

通过非官方库集成 NotebookLM 功能的工作流工具。

  • 支持笔记本创建、源导入和工件生成。
  • 灵活对接自定义开发需求。notebooklm-integration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用第三方库可能存在稳定性风险。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 建议评估维护状态后再投入生产环境。

SKILL.md

name
notebooklm-integration
description
Integrate Google NotebookLM capabilities into your workflow via the unofficial notebooklm-py library. Use when you need to: create/manage notebooks, import sources (URLs, PDFs, YouTube, etc.), run research queries, generate audio/video overviews, create slide decks/infographics/quizzes/flashcards, or download generated artifacts. Provides programmatic access to NotebookLM features not exposed in the web UI.

NotebookLM Integration Skill

This skill enables you to leverage the full power of Google NotebookLM through the unofficial notebooklm-py Python library. It provides programmatic access to features that aren't available in the web UI, including batch operations, custom format exports, and advanced automation capabilities.

When to Use This Skill

Use this skill when you need to:

  • Create, list, rename, or delete NotebookLM notebooks
  • Import various source types (URLs, YouTube videos, PDFs, text files, Google Drive, etc.)
  • Ask questions and chat with your notebooks using custom personas
  • Run web and Drive research agents with auto-import capabilities
  • Generate Audio Overviews (podcasts) in multiple formats and languages
  • Create Video Overviews with different visual styles
  • Generate Slide Decks (PDF/PPTX) and Infographics (PNG)
  • Create Quizzes and Flashcards in multiple formats (JSON, Markdown, HTML)
  • Download all generated artifacts locally or export to Google Docs/Sheets
  • Share notebooks with specific permissions and view level controls

Quick Start

Installation

First, ensure you have the notebooklm-py library installed:

pip install notebooklm-py

Basic Usage Patterns

Python API

from notebooklm import NotebookLMClient

# Initialize client
client = NotebookLMClient()

# Create a new notebook
notebook = client.create_notebook("My Research Project")

# Add sources
notebook.add_source(url="https://example.com/research-paper.pdf")
notebook.add_source(youtube_url="https://youtube.com/watch?v=abc123")
notebook.add_source(file_path="./documents/report.txt")

# Ask questions
response = notebook.ask("What are the main findings in these sources?")
print(response.text)

# Generate audio overview
audio = notebook.generate_audio_overview(
    format="deep-dive",
    length="medium",
    language="en"
)
audio.save("./outputs/podcast.mp3")

CLI Usage

# Create notebook
notebooklm notebook create "My Research"

# Add sources
notebooklm notebook add-source "My Research" --url https://example.com/paper.pdf
notebooklm notebook add-source "My Research" --youtube https://youtube.com/watch?v=abc123

# Ask questions
notebooklm notebook ask "My Research" "Summarize the key points"

# Generate content
notebooklm notebook audio "My Research" --format deep-dive --length medium
notebooklm notebook video "My Research" --style cinematic
notebooklm notebook slide "My Research" --format detailed

# Download artifacts
notebooklm notebook download "My Research" --format mp3 --output ./podcasts/

Advanced Features

Research Automation

# Run web research with auto-import
research_notebook = client.research_web(
    query="latest developments in quantum computing",
    max_sources=10,
    mode="deep"  # or "fast"
)

# Run Drive research
drive_notebook = client.research_drive(
    folder_id="your-drive-folder-id",
    query="machine learning papers"
)

Batch Operations

# Import multiple sources at once
sources = [
    {"type": "url", "value": "https://example1.com"},
    {"type": "youtube", "value": "https://youtube.com/watch?v=..."},
    {"type": "file", "value": "./document.pdf"}
]

notebook.add_sources(sources)

# Generate multiple content types
formats = ["mp3", "mp4", "pdf", "png"]
for fmt in formats:
    notebook.download_artifacts(format=fmt, output_dir=f"./outputs/{fmt}")

Custom Personas

# Set a custom persona for more focused responses
notebook.set_persona(
    "You are a technical expert specializing in machine learning. "
    "Provide detailed, accurate explanations with code examples when relevant."
)

Output Formats

Audio Overview

  • Formats: deep-dive, brief, critique, debate
  • Lengths: short, medium, long
  • Languages: 50+ supported
  • Output: MP3/MP4

Video Overview

  • Formats: explainer, brief, cinematic
  • Styles: 9 visual styles plus cinematic-video alias
  • Output: MP4

Slide Deck

  • Formats: detailed, presenter
  • Output: PDF, PPTX

Infographic

  • Orientations: 3 (portrait, square, landscape)
  • Detail levels: 3 (low, medium, high)
  • Output: PNG

Quiz & Flashcards

  • Configurable quantity and difficulty
  • Output: JSON, Markdown, HTML

Best Practices

  1. Error Handling: The library uses undocumented Google APIs that may change - implement retry logic and fallback mechanisms
  2. Rate Limits: Be mindful of usage quotas to avoid throttling
  3. Cleanup: Temporary files are cleaned up automatically, but manage your output directories
  4. Authentication: Uses your Google credentials - ensure you're logged in via browser auth flow
  5. Organization: Create engagement-specific notebooks for different projects

Updating the Skill

To update this skill to the latest version from the GitHub repository, follow these steps:

  1. Clone or pull the latest version of the notebooklm-py repository:
   git clone https://github.com/teng-lin/notebooklm-py.git
   # or if you already have it:
   cd notebooklm-py && git pull
  1. Re-run the installation process:
   pip install -e .  # for development mode, or just pip install notebooklm-py
  1. If you're using the OpenClaw skill, you can update it by re-running the skill creation process from the latest repository.

Troubleshooting

  • If APIs break, check the Troubleshooting guide in the notebooklm-py repo
  • For authentication issues, re-run the login process
  • Rate limit errors require reducing request frequency or implementing exponential backoff
  • Some features may require specific Google Workspace permissions

Related Skills

  • ai-agent-development - For building agents that utilize NotebookLM capabilities
  • audio-transcriber - For processing generated audio content
  • video-frames - For extracting frames from video overviews
  • app-builder - For creating full applications around NotebookLM workflows

Bet, Boss. This skill puts the full power of NotebookLM at your fingertips. What notebook shall we create first? 😉

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.48%
按下载量换算3,976

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills