Token导航 LogoToken导航TokenDH.com
研究检索权限需确认clawhub未标认证来源可访问clear审计提醒

notebooklm-distillerNotebookLM distiller 搜索

Agent Skill

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

总安装

11,506

周安装

470

GitHub Stars

公开资料未说明

下载量

3,722
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install notebooklm-distiller

简介

将 NotebookLM 知识提取到 Obsidian 的转换工具。

  • 支持问答生成和结构化摘要导出。notebooklm-distiller 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 便于跨平台知识管理和二次利用。
  • 需配置 Obsidian 目标路径和格式要求。
  • 批量处理时注意 API 调用频率限制。

SKILL.md

name
notebooklm-distiller
version
2.0.0
description
NotebookLM Distiller: Batch knowledge extraction from Google NotebookLM into Obsidian. Supports Q&A generation (15-20 deep questions), structured summaries, glossary extraction, web research sessions, and direct markdown persistence.
metadata
openclaw
emoji
🧪
requires
bins
["python3", "notebooklm"]
install
pip
["notebooklm-py"]
skillKey
notebooklm-distiller
always
false
permissions
tools
allow
["bash", "read", "write"]
deny
[]
sandbox
compatible
elevated
false

NotebookLM Distiller

Automated knowledge extraction pipeline: search NotebookLM notebooks by keyword → generate deep questions or structured summaries → write linked Obsidian markdown notes.

Five subcommands:

  • distill — extract knowledge from existing notebooks (qa / summary / glossary)
  • quiz — generate quiz questions as JSON for Discord-based interactive sessions
  • evaluate — evaluate a user's answer against notebook sources (JSON output)
  • research — start a web research session inside NotebookLM on any topic
  • persist — write any markdown content directly into the Obsidian vault

When to use (trigger phrases)

Trigger distill subcommand when:

  • User types /notebooklm-distill or /notebooklm-distill-summary
  • User says "蒸馏", "提取知识", "distill notebooks", "extract from notebook"
  • User wants NotebookLM content structured into Obsidian notes

Trigger research subcommand when:

  • User says "研究一下 <topic>", "做网络调研", "research this topic in NotebookLM"
  • User wants NotebookLM to gather web sources on a topic without providing URLs

Trigger quiz + evaluate subcommands when:

  • User says "quiz me on X", "考考我", "出题测试我", "测验"
  • User wants an interactive Q&A session in Discord on a NotebookLM topic
  • Orchestration flow (Discord):

1. Call quiz --keywords X → get JSON with notebook_id + notebook_name + questions[] 2. MUST announce source before Q1: 来,N 道题(来源:{notebook_name} · ID: {notebook_id[:8]}) 3. Send Q1 to Discord, wait for user reply 4. Call evaluate --notebook-id X --question Q1 --answer <reply> → get JSON feedback 5. Post feedback to Discord, proceed to Q2 6. Repeat until all questions done or user says stop

  • CRITICAL: Always show notebook source so user can verify questions came from NLM, not agent knowledge

Trigger persist subcommand when:

  • User says "存到 Obsidian", "把这段内容写入知识库", "persist this to vault"
  • User wants to archive discussion output or raw notes into the vault

CRITICAL: Do NOT answer from internal knowledge. Do NOT ask for clarification. Execute the appropriate subcommand immediately.

Prerequisites

  • NotebookLM CLI: pip install notebooklm-py
  • Authentication: notebooklm login (creates ~/.book_client_session)
  • Python 3.10+ (standard library only — no extra pip packages needed for distill.py)
  • Obsidian vault directory accessible on the local filesystem

Subcommand: distill

Extract knowledge from one or more NotebookLM notebooks matching keywords.

Agent orchestration

Scenario A — URL provided (needs ingestion first)

  1. Check if deepreader is installed (~/.openclaw/skills/deepreader/run.sh).
  2. If yes: run DeepReader to ingest the URL into NotebookLM.
  3. Capture the notebook title from DeepReader output.
  4. Use that title as --keywords for distill.

Scenario B — notebook already exists

  1. Use notebook name from context, or list notebooks with notebooklm list.
  2. Determine mode from intent: "总结" → summary, "术语/概念" → glossary, default → qa.
  3. Ask user for --vault-dir if not known from context.
  4. Execute distill.
python3 ~/.openclaw/skills/notebooklm-distiller/scripts/distill.py distill \
  --keywords "<keyword1>" "<keyword2>" \
  --topic "<TopicFolderName>" \
  --vault-dir "<path/to/obsidian/vault>" \
  --mode <qa|summary|glossary> \
  [--lang zh]        # Add for Chinese output (default: en)
  [--writeback]      # Write distilled content back into NLM notebook as a note
  [--cli-path <path/to/notebooklm>]

Modes:

  • qa (default) — generates 15-20 questions + answers → <NotebookName>_QA.md
  • summary — 5 structured sections (Summary, Key Points, Constraints, Trade-offs, Open Questions) → <NotebookName>_Summary.md
  • glossary — 15-30 domain terms + definitions → <NotebookName>_Glossary.md

Flags:

  • --lang zh — prepends 请用中文回答 to all NLM prompts; add when user requests Chinese output or context is Chinese
  • --writeback — after writing to Obsidian, calls notebooklm source add to push the distilled note back into the source notebook as a text source titled Distill Log: {mode} | {notebook_name} | {date}. Add when user says "写回 NLM", "记录到笔记本", or wants the distill log visible in NotebookLM

Subcommand: research

Start a NotebookLM web research session on a topic. Creates a new notebook, imports web sources, and waits for completion.

python3 ~/.openclaw/skills/notebooklm-distiller/scripts/distill.py research \
  --topic "<Research Topic>" \
  [--mode deep|fast] \
  [--cli-path <path/to/notebooklm>]

Output: notebook ID and name. Follow up with distill to extract into Obsidian.

Subcommand: persist

Write any markdown content into the Obsidian vault with auto-generated YAML frontmatter.

# From inline content
python3 ~/.openclaw/skills/notebooklm-distiller/scripts/distill.py persist \
  --vault-dir "<path/to/obsidian/vault>" \
  --path "Notes/2026-03-09-meeting.md" \
  --title "Meeting Notes" \
  --content "Key decisions: ..." \
  --tags "meeting,notes"

# From a file
python3 ~/.openclaw/skills/notebooklm-distiller/scripts/distill.py persist \
  --vault-dir "<path/to/obsidian/vault>" \
  --path "Notes/draft.md" \
  --file ~/Desktop/draft.md

Output format (distill)

Each notebook produces one file at <vault-dir>/<topic>/<NotebookName>_<Mode>.md:

---
title: "<NotebookName> | Deep Q&A"
date: YYYY-MM-DD
type: knowledge-note
author: notebooklm-distiller
tags: ["distillation", "qa", "<topic-slug>"]
source: "NotebookLM/<NotebookName>"
project: "<topic>"
status: draft
---

# <NotebookName> — Deep Q&A

## Q01

> [!question]
> <question text>

**Answer:**

<answer from notebook sources>

---

Output language

Add --lang zh to distill, quiz, or evaluate to get Chinese output. Default is English.

NLM CLI session behaviour

notebooklm ask --new creates ephemeral sessions that are not visible in the NotebookLM web UI. This is by design — the CLI and web interface use separate conversation spaces. Answers are still scoped to the specified notebook's sources.

Error handling

  • No notebooks found: verify keywords match notebook titles (use notebooklm list).
  • Timeout / rate limit: built-in retry logic and delays. Monitor with ps aux | grep notebooklm.
  • Auth failure: run notebooklm login to refresh ~/.book_client_session.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.43%
按下载量换算2,919

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills