LaunchKit · 2026
Back to Skills

open-notebook-integration

A skill for integrating OpenClaw agents with open-notebook, a local AI research assistant (NotebookLM alternative).

2
425 downloads
by @nantes

Setup & Installation

openclaw skills install @nantes/open-notebook-integration

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install open-notebook-integration

Version History

v1.0.1Feb 20, 2026 - Version note by skill developer:

Fixed: included function examples in SKILL.md, improved documentation

What This Skill Does

Connects OpenClaw agents to open-notebook, a locally hosted research assistant. Agents can create notebooks, save content, and query stored knowledge using PowerShell functions that call the open-notebook REST API. Runs fully local via Docker and Ollama with no external API costs.

Runs entirely on local infrastructure with Ollama, so there are no API costs or data privacy concerns compared to cloud-based alternatives like NotebookLM.

When to use it

  • Saving agent-generated research findings across sessions
  • Querying past notes to continue interrupted research
  • Organizing knowledge into separate thematic notebooks
  • Building a persistent memory layer for long-running agent workflows
  • Replacing cloud-based notebook tools with a self-hosted alternative

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Save my notes on transformer architectures and let me query them later

AGENT
  1. 1Calls New-Notebook to create a notebook named 'Transformer Research'
  2. 2Records the returned notebook ID
  3. 3Calls Add-ToNotebook with the content and notebook ID to save the notes
  4. 4Confirms the source was added via the API response
  5. 5Calls Search-Notebook with a query to retrieve relevant stored knowledge
OUTPUT

Notebook created and notes saved locally; agent returns the answer retrieved from stored content

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Docker Desktop installed and runningOllama installed with at least one model (e.g. qwen3-4b-thinking-32k)open-notebook containers running locally via Docker Compose