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

notebooklmNotebookLM 笔记研究

Agent Skill

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

总安装

1

周安装

12

GitHub Stars

448

下载量

97
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:notebooklm(NotebookLM 笔记研究)
来源仓库:https://github.com/artemxtech/personal-os-skills
仓库路径:skills/notebooklm
安装命令:
npx skills add https://github.com/artemxtech/personal-os-skills --skill notebooklm
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/artemxtech/personal-os-skills --skill notebooklm

简介

notebooklm 将 YouTube 频道内容批量导入 NotebookLM,生成可执行的专家知识协议。

  • 适用于从播客、访谈中提取 actionable insights 并转化为实验性学习路径。
  • 自动加载 300+ 集视频,生成带引用来源的回答与可验证建议。
  • 需在 Obsidian 中配置 NotebookLM 插件并设置 API 端口与密钥。
  • notebooklm 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

NotebookLM - Expert Knowledge to Action

Turn any expert's content into a personalized protocol with experiments you actually run. Load 300 YouTube episodes into NotebookLM from terminal, run a cited interview about your goal, create experiments in your Obsidian daily note.

Video walkthrough: https://youtu.be/KRpZSvtMiTI

What This Does

  1. Load sources from terminal. You can't just tell NotebookLM to add a YouTube channel. This skill does it. One command. 300 episodes.
  2. Cited answers traced to exact transcript lines. Every recommendation links back to the exact episode and passage. Verifiable.
  3. Expert-informed interviews. Claude queries NotebookLM with YOUR goal. Generates questions informed by the expert's research on your specific topic.
  4. Experiments in Obsidian. Protocol becomes experiments in your daily note. Morning routine skill asks every day: how is this going?
  5. Any expert, any domain. Huberman for health. Lenny for product. Onboarding docs for a new job. Same pattern.

Prerequisites

1. Install nlm CLI

uv tool install notebooklm-mcp-cli

Gives you the nlm command. See notebooklm-mcp-cli for details.

2. Install notebooklm-py (for notebook creation and channel loading)

pip install "notebooklm-py[browser]"
playwright install chromium

3. Authenticate

# nlm CLI auth (for queries and source listing)
nlm auth login

# notebooklm-py auth (for notebook creation and loading)
notebooklm login

Both open a browser window for Google login. nlm saves to its own config, notebooklm-py saves cookies to ~/.notebooklm/storage_state.json.

4. Obsidian Plugins

  • Dataview (required) - for dashboard queries and citation tables

Quick Start

# List your notebooks
nlm notebook list

# Ask a question with citations
nlm notebook query <notebook-id> "What does Huberman say about deep focus?" --json

# List sources
nlm source list <notebook-id> --json

Workflow Routing

User saysWorkflow
"load channel", "youtube channel", "bulk load videos"workflows/youtube-channel.md
"notebooklm ask", "ask notebook", "Q&A"workflows/ask.md
"import notebook", "import sources"workflows/import.md
"notebooklm auth", "notebooklm login"workflows/auth.md

The Full Pipeline

This is the workflow shown in the video:

1. Pick your expert and goal

Goal: "I want to improve my health and focus"
Expert: Andrew Huberman (@hubaborhab on YouTube)

2. Load their content

# Scrape channel videos
python3 scripts/load_channel.py scrape \
  --channel "https://www.youtube.com/@hubaborhab" \
  --output /tmp/huberman-videos.json

# Create notebook
notebooklm create "Andrew Huberman - Health"

# Load 200 most recent health-related episodes
notebooklm use <notebook-id>
python3 scripts/load_channel.py load \
  --videos /tmp/huberman-videos.json \
  --notebook <notebook-id> \
  --count 200 \
  --concurrency 20

3. Ask expert-informed questions

nlm notebook query <notebook-id> \
  "What does Huberman recommend for sustaining deep focus for 4+ hours daily?" --json

Each answer comes with [N] citations back to the exact source and passage.

4. Run a cited interview

Claude uses the notebook to generate interview questions specific to YOUR goal. You answer honestly. Claude builds a personalized protocol where each recommendation is tied to an exact episode.

5. Create experiments

The protocol becomes experiments in your Obsidian vault:

  • Each experiment has a hypothesis, protocol, success criteria, and timeframe
  • They appear in your daily note every morning
  • Your morning routine skill asks: "How is this experiment going? Any observations?"

6. Turn it into a reusable skill

Package the workflow as a /huberman or /lenny skill. Same pattern, different expert.

Vault Structure

Your Vault/
├── Notes/NotebookLM/
│   ├── Huberman Health.md              # type: notebook (index)
│   └── huberman-health/
│       ├── Sources/                     # type: notebook-source (transcripts)
│       │   └── Episode Title.md
│       └── QA/                          # type: nlm-query (cited answers)
│           └── 2026-04-05 Focus Protocol.md
├── Notes/Experiments/
│   └── Morning Sunlight Protocol.md     # type: experiment
└── Notes/Dashboards/
    └── Health.md                        # Dashboard with embedded experiments

Scripts

ScriptPurpose
scripts/load_channel.pyScrape YouTube channel + bulk-load into NotebookLM
scripts/resolve_citations.pyReplace [N] with `[[Source#^anchor\[N]]]` wikilinks
scripts/import_sources.pyImport sources as vault files with metadata
scripts/extract_passages.pyExtract cited passages from Q&A into source files
scripts/backfill_fulltext.pyFetch full transcripts for source files

All scripts use Path.cwd() as vault root. Run them from your vault directory.

Citation Resolution

The resolver turns [N] markers in NotebookLM answers into clickable [[Source#^c-XXXXXXXX|[N]]] wikilinks. Click to jump to the exact cited passage in the source transcript.

  • Anchor IDs are stable (MD5 of cited text)
  • Idempotent: re-running same question skips existing anchors
  • Cross-source citation remap: handles collapsed source_ids
  • ~96% resolution rate across tested queries

Examples

  • Health: 300 Huberman episodes -> personalized health protocol with sleep, supplements, exercise experiments
  • Product: 200 Lenny's Podcast episodes -> product strategy playbook with cited frameworks
  • New job: Onboarding docs + team wikis + architecture decisions -> ramp-up plan with daily experiments
  • Business: Hormozi content -> offer audit with value equation scoring

License

MIT

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.7%
按下载量换算37

Claude

29.23%
按下载量换算28

Cursor

21.03%
按下载量换算20

Gemini CLI

9.37%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills