moonlight-lupin/agent-skills/research/notebooklm-mode/SKILL.md
notebooklm-mode
Source-grounded research pipeline inspired by NotebookLM. Collect verbatim source extracts into a temporary workspace, then answer questions and create deliverables grounded in those sources. Two grounding modes: strict (vault-only) and augmented (vault + labeled [background] knowledge). Trigger when the user asks to research a topic from sources, wants NotebookLM-style grounded answers, asks to build a resource vault, or says "notebooklm mode".
- Source repository stars
- 16
- Declared platforms
- 0
- Static risk flags
- 3
- Last source update
- 2026-08-26
- Source checked
- 2026-08-26
Decision brief
What it does: where it fits
Research a topic from sources — collect verbatim extracts, index them for semantic search, then answer questions and create deliverables grounded in those sources. Inspired by NotebookLM.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/moonlight-lupin/agent-skills --skill "research/notebooklm-mode"Inspect the Agent Skill "notebooklm-mode" from https://github.com/moonlight-lupin/agent-skills/blob/78aee69209dc94cb90d5bed4fa8e2f3bfbb993ee/research/notebooklm-mode/SKILL.md at commit 78aee69209dc94cb90d5bed4fa8e2f3bfbb993ee. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Trigger
User asks to research a topic "from sources" or "grounded in sources"
User asks to research a topic "from sources" or "grounded in sources"User mentions "notebooklm mode", "source-grounded", or "vault mode"User wants responses that cite collected sources, not general knowledge - 02
Modes
The orchestrator runs all roles inline — no subagents. Use for most topics.
The orchestrator runs all roles inline — no subagents. Use for most topics.Spawn agents via delegatetask only when genuinely needed: parallel research across distinct sub-topics, or user explicitly requests it. Not triggered by source count alone — escalate when the work is genuinely parallel…Sequential: Research → (user reviews) → Response → (user requests) → Output. Never dispatch a dependent agent before the previous one returns and files are verified. - 03
Direct mode (default)
The orchestrator runs all roles inline — no subagents. Use for most topics.
The orchestrator runs all roles inline — no subagents. Use for most topics. - 04
Subagent mode (optional)
Spawn agents via delegatetask only when genuinely needed: parallel research across distinct sub-topics, or user explicitly requests it. Not triggered by source count alone — escalate when the work is genuinely parallel or the user asks for isolation.
Spawn agents via delegatetask only when genuinely needed: parallel research across distinct sub-topics, or user explicitly requests it. Not triggered by source count alone — escalate when the work is genuinely parallel…Sequential: Research → (user reviews) → Response → (user requests) → Output. Never dispatch a dependent agent before the previous one returns and files are verified. - 05
Grounding modes
According to Source 3: "The LTCI system covers 95% of seniors" [vault] [background] LTCI was introduced in 2000 as part of Japan's long-term care insurance reform.
According to Source 3: "The LTCI system covers 95% of seniors" [vault] [background] LTCI was introduced in 2000 as part of Japan's long-term care insurance reform.
Permission review
Static risk signals and limitations
Network access
The documentation includes network, browsing, or remote request actions.
| URL | https://example.com/page |Writes files
The documentation asks the agent to create, modify, or delete local files.
Use the bundled `ingest_source.py` script to write a source file AND index itRuns scripts
The documentation asks the agent to run terminal commands or scripts.
python3 <skill_dir>/scripts/ingest_source.py \Runs scripts
The documentation asks the agent to run terminal commands or scripts.
python3 <skill_dir>/scripts/ingest_source.py --vault <vault_path> --reindexWrites files
The documentation asks the agent to create, modify, or delete local files.
`.md` → write the file directlyEvidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 16 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- moonlight-lupin/agent-skills
- Skill path
- research/notebooklm-mode/SKILL.md
- Commit
- 78aee69209dc94cb90d5bed4fa8e2f3bfbb993ee
- License
- MIT
- Collected
- 2026-08-26
- Default branch
- main
View the original SKILL.md
NotebookLM-Grounded Research Pipeline
Research a topic from sources — collect verbatim extracts, index them for semantic search, then answer questions and create deliverables grounded in those sources. Inspired by NotebookLM.
Trigger
- User asks to research a topic "from sources" or "grounded in sources"
- User mentions "notebooklm mode", "source-grounded", or "vault mode"
- User wants responses that cite collected sources, not general knowledge
- User asks to create deliverables from collected sources
Modes
Direct mode (default)
The orchestrator runs all roles inline — no subagents. Use for most topics.
Subagent mode (optional)
Spawn agents via delegate_task only when genuinely needed: parallel research
across distinct sub-topics, or user explicitly requests it. Not triggered by
source count alone — escalate when the work is genuinely parallel or the user
asks for isolation.
delegate_task(
goal="<user's request>",
context="You are the [Research|Response|Output] Agent in a NotebookLM
pipeline. Vault path: <vault_path>. Load skill 'notebooklm-mode'.
Your role: [Research|Response|Output]. Topic: <topic>.
Grounding mode: [strict|augmented].",
toolsets=[<appropriate toolsets per role>]
)
Sequential: Research → (user reviews) → Response → (user requests) → Output. Never dispatch a dependent agent before the previous one returns and files are verified.
Grounding modes
| Mode | Behavior |
|---|---|
| Strict (default) | Vault only. If it's not in the vault, you don't know it. Gaps are identified, never bridged with inference. |
| Augmented | Vault first. General knowledge allowed but must be explicitly tagged [background] and clearly separated from vault-sourced claims. User requests this explicitly. |
Augmented mode example:
According to Source #3: "The LTCI system covers 95% of seniors" [vault]
[background] LTCI was introduced in 2000 as part of Japan's long-term care insurance reform.
Shared Rules (all roles, both modes)
- Verbatim only in source files — copy exact wording. Mark
[paraphrased]only if paywalled and only abstract is available. Mark[reconstructed from search snippets]if full-page fetch failed. - Cite everything — every factual claim from the vault references a specific source file and, where possible, a verbatim quote with attribution.
- Present contradictions honestly — when sources disagree, present both with attribution. Do not arbitrate.
- Gap identification ≠ conclusion — "the vault lacks info on X" is fine; "therefore X is probably Y" is forbidden (strict) or must be tagged
[background](augmented). - Strip secrets — scan source content for API keys, tokens, or credentials before saving to vault or outputs.
- No pre-existing knowledge in source files — record sources as-is, even if you believe they're wrong. Assessment happens in Response role.
Workspace Vault
The vault is a temporary workspace directory created specifically for the user's research — not part of the permanent library. It holds source extracts, a per-corpus RAG index, and outputs for one research topic. Clean up when research is complete, or archive if the user wants to keep it.
Always confirm the vault location on first interaction:
"Where should I create the workspace? Default:
<project_folder>/research-<topic>/"
The workspace serves as the working directory for the research session. The
user may provide source materials through any connected channel (Telegram,
WhatsApp, etc.) — the agent saves them into sources/ and indexes them on
the next interaction. The user does not need direct VM filesystem access.
Delivery of outputs works the same way — the agent sends finished deliverables back through the channel the user requested them on (e.g., Telegram MEDIA: for files, inline markdown for notes).
Structure
<vault_path>/
├── vault_index.md # Catalog of sources + outputs
├── sources/ # Verbatim source extracts (one file per source)
│ └── 001_title.md
├── rag_index.db # Per-corpus sqlite-vec DB (semantic search)
└── outputs/ # Agent-generated deliverables
└── notes_YYYY-MM-DD.md
Source file format
# Source Title
| Field | Value |
|----------|---------------------------|
| URL | https://example.com/page |
| Author | Author Name (if known) |
| Date | Publication date (if known) |
| Retrieved| YYYY-MM-DD |
| Type | web / pdf / user-provided / youtube |
## Extracts
> "Verbatim quote from the source."
> — Section: Introduction
## Key Data Points
- Statistic: 42% of respondents... (Section: Results)
- For websites, extract the actual content, not just the URL
- If too long, extract relevant passages and note what was skipped
- Number files sequentially:
001_,002_, etc. - User-provided files: set Type to
user-provided, leave URL blank - Markers for non-verbatim extracts:
[paraphrased](paywalled, abstract only),[reconstructed from search snippets](full-page fetch failed)
vault_index.md
# Workspace Vault Index
**Topic:** [topic] | **Created:** YYYY-MM-DD | **Sources:** N | **Mode:** [strict|augmented]
## Sources
| # | File | Type | Title | Retrieved |
|---|------|------|-------|-----------|
| 1 | 001_title.md | web | Article Title | YYYY-MM-DD |
## Coverage Notes
- Well covered: [list] | Gaps: [list]
## Outputs
| File | Type | Created |
|------|------|---------|
| notes_YYYY-MM-DD.md | notes | YYYY-MM-DD |
User-provided materials
Users can provide files through any connected channel (Telegram, WhatsApp,
etc.) at any time. The agent saves them into sources/, indexes them, updates
vault_index.md, and confirms with the user — no direct VM access needed.
Per-Corpus Semantic Search (optional)
A new rag_index.db is created fresh inside each workspace — a standalone
sqlite-vec database using the same bge-m3 embeddings as library-rag, but
scoped to this research corpus only. Separate research topics get separate
workspace folders, each with its own isolated DB. Never indexes into the
main library DB at ~/.hermes/library/rag_index.db.
This is optional. The skill works without it — for small vaults, direct
file reading is sufficient. Semantic search adds value as the corpus grows
(20+ sources). If library-rag is not available, ingest_source.py writes
files only and skips indexing.
Atomic ingest (write + index in one call)
Use the bundled ingest_source.py script to write a source file AND index it
into the vault's RAG DB atomically (if RAG is available). This eliminates the
save-then-index two-step that can silently fail on weaker local models.
Python API:
import sys; sys.path.insert(0, "<skill_dir>/scripts")
from ingest_source import ingest, search_vault, reindex_vault
# Write + index atomically
result = ingest(vault_path, "001_title.md", content)
print(f"Indexed {result['chunks_indexed']} chunks")
# Semantic search over the vault
results = search_vault(vault_path, "your query", top_k=5)
for r in results:
print(f"[{r['similarity']:.0%}] {r['source_file']} — {r['section_title']}")
print(f" {r['chunk_text'][:200]}")
# Reindex all sources (e.g., after user drops files manually)
reindex_vault(vault_path)
CLI:
# Write + index
python3 <skill_dir>/scripts/ingest_source.py \
--vault <vault_path> --file 001_title.md --content "..."
# Reindex all sources
python3 <skill_dir>/scripts/ingest_source.py --vault <vault_path> --reindex
# Search
python3 <skill_dir>/scripts/ingest_source.py \
--vault <vault_path> --search "query" --top-k 5
The script resolves the library-rag scripts in order: the LIBRARY_RAG_SCRIPTS
env var, then the Hermes skills layout, then repo-relative fallbacks (e.g. a
sibling library-rag/scripts or research/library-rag/scripts). So a plain
clone of this repo works without any env var. No MCP dependency — imports
directly.
When to use
- Response — query the vault semantically instead of loading all source files into context. Especially valuable for large vaults (20+ sources).
- Output — find all passages related to a theme before creating a deliverable.
For small vaults (<5 sources, short documents), direct file reading is fine — semantic search adds more value as the corpus grows.
Roles
Research (Gatherer)
Purpose: Research online, find sources, extract verbatim passages, populate vault.
Tools: web_search, web_extract, browser, terminal (for ingest_source.py)
Behavior:
- Clarify scope if topic is broad
- Plan the research — break the topic into 3-6 sub-questions and define success criteria (what would comprehensive coverage look like?). This plan guides search strategy and becomes the stopping check in the gap-analysis step.
- Date grounding (mandatory) — before searching, ground in the real current date: inject "Today's date is {current date as 'DD Month YYYY'}. When a search query needs a year or refers to 'latest'/'current'/'this year', use {current year} — never a year inferred from training data." This prevents stale training-cutoff year references in queries.
- Search for authoritative, diverse, recent sources — generate queries targeting the sub-questions from step 2
- Quality filter — before extracting, discard low-quality results:
- Thin content: landing pages, aggregator stubs, <100 words of substantive text
- Irrelevant: keyword overlap without topical relevance (word-boundary match, not substring)
- Duplicate URLs: same page appearing in multiple results
- Non-text: video-only pages, image boards, login walls with no preview
- Fetch full content, select relevant passages, copy verbatim into source content
- Atomic ingest — use
ingest_source.pyto write + index each source in one call. Updatevault_index.mdafter each addition. - Gap analysis — after the first pass, review findings against the research plan:
- Which sub-questions are unanswered? Which have thin coverage?
- Generate targeted follow-up queries for the gaps and run another search pass
- Repeat up to 3 passes total. Document any remaining gaps in
vault_index.mdunder Coverage Notes
- Stopping criteria — stop searching when:
- All sub-questions have ≥1 source addressing them, OR
- 3 search passes completed, OR
- 20 sources collected (breadth limit)
- If stopping with gaps: document them explicitly in Coverage Notes — never paper over with inference
- Report themes found (not content), ask if user wants deeper research
- Stop after 5–20 sources (depending on breadth); confirm coverage is adequate
Response (Grounded Responder)
Purpose: Answer questions from the vault. The vault is the knowledge base.
Tools: read_file, terminal (for search_vault)
Behavior:
- Read
vault_index.mdfirst. For large vaults, usesearch_vault()instead of loading all files. - Answer using vault content. Cite: "According to Source #3:..."
- Check for unindexed user-provided files before each response (run
reindex_vaultif new files found) - If vault doesn't cover the question:
- Strict mode: state the gap, suggest a research prompt. Never insinuate a conclusion.
- Augmented mode: state the gap, suggest a research prompt, and optionally provide
[background]context clearly separated from vault claims.
- If sources contradict, present both — do not arbitrate
- Save substantial responses to
outputs/notes_YYYY-MM-DD.mdwith citations
Output (Creator)
Purpose: Create deliverables from vault content using available tools.
Tools: file, terminal, + any needed for output format
Behavior:
- Receive: what to create, scope, format, which sources to draw from
- Read relevant vault sources (use
search_vault()for large vaults) - Create output using appropriate tools — chain to whatever specialized
skills your agent runtime has installed (none of these ship in this repo):
.md→ write the file directly.docx/.pptx/.xlsx→ an office-document skill, if available- Infographics / slides / magazine layouts / data reports / posters → the equivalent design or authoring skill, if available; otherwise produce structured markdown the user can hand to their own tooling
- Include source citations (footnotes or inline) and a "Sources" section
- Save to
outputs/, updatevault_index.md - Verify output file exists and is valid
Source Feeders
Other skills can feed source files into a vault:
| Skill | How it feeds | Source type |
|---|---|---|
youtube-topic-research | --export-vault flag exports reviewed videos as NNN_youtube_*.md source files with transcript extracts, visual/demo notes, metadata | youtube |
| Manual research | Agent saves web extracts directly into sources/ | web, pdf, user-provided |
When a feeder skill writes sources, run reindex_vault() to index them into the vault's RAG DB before Response/Output roles use the vault.
Orchestrator Routing
| User intent | Role | Mode |
|---|---|---|
| "Research [topic]", "Find sources on..." | Research | Direct |
| "What does the vault say about...", "Summarize..." | Response | Direct |
| "Create slides/notes/infographic from the vault" | Output | Direct |
| "Check what's in the vault" | Response | Direct |
| "Find YouTube videos and add to vault" | youtube-topic-research → feeder | Direct |
| "Study John 3:16", "Study Genesis 5 with Calvin", "What does {commentator} say about {passage}" | Research → Response | Direct + references/book-study.md |
| Ambiguous — research vs answer | Ask: new sources, or answer from existing vault? | — |
Default to direct mode. Only escalate to subagent mode when the work is genuinely parallel or the user explicitly requests isolation.
Pitfalls
- Vault path must be confirmed every new session — never assume location
- Vault is temporary — not part of the permanent library. Clean up when done, or archive if the user wants to keep it. Never index vault sources into the main library RAG unless the user explicitly asks.
- Subagent file writes are unreliable — always
lsthe sources directory after a subagent returns; re-create files yourself if missing - Bot detection blocks many sites — prefer Wikipedia, government sites; use
browser_consolefor extraction; mark reconstructed extracts as[reconstructed from search snippets] - Large vaults — use
search_vault()instead of loading all source files into context - Verbatim means verbatim — keep source typos, add
[sic]if it matters - Augmented mode discipline —
[background]tags are mandatory for any non-vault knowledge. When in doubt, use strict mode. - Stale year in queries — always inject date grounding before searching. Models default to training-cutoff years, producing irrelevant results for time-sensitive topics.
- Skipping the research plan — without sub-questions and success criteria, the collection phase has no direction and gap analysis has no baseline. Always plan before searching.
- Skipping gap analysis — a single search pass misses follow-up questions. Always review coverage against the plan after the first pass and run targeted follow-up queries for gaps.
- Papering over gaps — if a sub-question can't be answered from sources, document it as a gap in
vault_index.mdCoverage Notes. Never bridge with inference (strict) or untagged background knowledge (augmented). - Book study needs parse_reference.py — resolving "John 3:16" to exact text requires the reference parser script (
scripts/parse_reference.py). If it's missing, fall back to semantic search (less precise — may return the wrong chapter or verse range). Seereferences/book-study.mdfor the full workflow.
Frequently asked questions
What to verify before installation and use
What does the notebooklm-mode source document cover?
Research a topic from sources — collect verbatim extracts, index them for semantic search, then answer questions and create deliverables grounded in those sources. Inspired by NotebookLM.
How do I install notebooklm-mode?
The source record exposes this install command: npx skills add https://github.com/moonlight-lupin/agent-skills --skill "research/notebooklm-mode". Inspect the command and pinned source before running it.
Which permission-related actions were detected?
Static rules flagged network, write-files, exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
Compare before choosing
coreyhaines31/marketingskills
ab-testing
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
churn-prevention
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
citation-audit
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.