{
  "schemaVersion": "1.0",
  "item": {
    "slug": "open-notebook-integration",
    "name": "Open Notebook Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/nantes/open-notebook-integration",
    "canonicalUrl": "https://clawhub.ai/nantes/open-notebook-integration",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/open-notebook-integration",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=open-notebook-integration",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/open-notebook-integration"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/open-notebook-integration",
    "agentPageUrl": "https://openagent3.xyz/skills/open-notebook-integration/agent",
    "manifestUrl": "https://openagent3.xyz/skills/open-notebook-integration/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/open-notebook-integration/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Open Notebook Integration",
        "body": "A skill for integrating OpenClaw agents with open-notebook, a local AI research assistant (NotebookLM alternative)."
      },
      {
        "title": "What It Does",
        "body": "Connects your agent to open-notebook running locally\nCreates thematic notebooks for research, agent discovery, and personal knowledge\nEnables saving and querying knowledge across sessions (second brain for agents)\nSupports local Ollama models (free, no API costs)"
      },
      {
        "title": "Prerequisites",
        "body": "Install Docker Desktop (required for open-notebook)\n\n\nInstall Ollama with a model (e.g., qwen3-4b-thinking-32k)\n\n\nRun open-notebook:\ndocker compose -f docker-compose-host-ollama.yml up -d\n\nOr use the default compose:\ndocker compose up -d"
      },
      {
        "title": "Setup",
        "body": "The skill expects open-notebook at:\n\nUI: http://localhost:8502\nAPI: http://localhost:5055"
      },
      {
        "title": "Functions (INCLUDED)",
        "body": "This skill provides these PowerShell functions directly:"
      },
      {
        "title": "Add-ToNotebook",
        "body": "function Add-ToNotebook {\n    param(\n        [string]$Content,\n        [string]$NotebookId = \"YOUR_NOTEBOOK_ID\"\n    )\n    $body = @{\n        content = $Content\n        notebook_id = $NotebookId\n        type = \"text\"\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"http://localhost:5055/api/sources/json\" -Method Post -ContentType \"application/json\" -Body $body\n}"
      },
      {
        "title": "Search-Notebook",
        "body": "function Search-Notebook {\n    param(\n        [string]$Query,\n        [string]$NotebookId = \"YOUR_NOTEBOOK_ID\"\n    )\n    $body = @{\n        question = $Query\n        notebook_ids = @($NotebookId)\n        strategy_model = \"model:YOUR_MODEL_ID\"\n        answer_model = \"model:YOUR_MODEL_ID\"\n        final_answer_model = \"model:YOUR_MODEL_ID\"\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"http://localhost:5055/api/search/ask\" -Method Post -ContentType \"application/json\" -Body $body\n}"
      },
      {
        "title": "New-Notebook",
        "body": "function New-Notebook {\n    param(\n        [string]$Name,\n        [string]$Description = \"\"\n    )\n    $body = @{\n        name = $Name\n        description = $Description\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"http://localhost:5055/api/notebooks\" -Method Post -ContentType \"application/json\" -Body $body\n}"
      },
      {
        "title": "Notebook IDs",
        "body": "After creating notebooks, update these variables in your scripts:\n\n$SIMULATION = \"notebook:YOUR_SIMULATION_ID\"\n$CONSCIOUSNESS = \"notebook:YOUR_CONSCIOUSNESS_ID\"\n$ENJAMBRE = \"notebook:YOUR_ENJAMBRE_ID\"\n$OSIRIS = \"notebook:YOUR_OSIRIS_ID\"\n$RESEARCH = \"notebook:YOUR_RESEARCH_ID\""
      },
      {
        "title": "Example Usage",
        "body": "# Create a new notebook\nNew-Notebook -Name \"My Research\" -Description \"Research notes\"\n\n# Save content\nAdd-ToNotebook -Content \"This is my insight\" -NotebookId \"notebook:xxx\"\n\n# Query knowledge\n$result = Search-Notebook -Query \"What did I learn about X?\" -NotebookId \"notebook:xxx\""
      },
      {
        "title": "Configuration Required",
        "body": "Before using, you MUST:\n\nRun open-notebook with Docker\nCreate notebooks via the UI (http://localhost:8502) or API\nGet your notebook IDs from the API response\nUpdate the $NotebookId parameters in the functions"
      },
      {
        "title": "Requirements",
        "body": "Docker Desktop running\nOllama with at least one model installed\nopen-notebook containers running (SurrealDB + app)"
      },
      {
        "title": "Troubleshooting",
        "body": "If API fails, check containers: docker ps\nCheck open-notebook logs: docker compose logs\nVerify Ollama is running: curl http://localhost:11434/api/tags"
      },
      {
        "title": "Version",
        "body": "1.0.1 - Improved documentation, included function examples"
      }
    ],
    "body": "Open Notebook Integration\n\nA skill for integrating OpenClaw agents with open-notebook, a local AI research assistant (NotebookLM alternative).\n\nWhat It Does\nConnects your agent to open-notebook running locally\nCreates thematic notebooks for research, agent discovery, and personal knowledge\nEnables saving and querying knowledge across sessions (second brain for agents)\nSupports local Ollama models (free, no API costs)\nPrerequisites\n\nInstall Docker Desktop (required for open-notebook)\n\nInstall Ollama with a model (e.g., qwen3-4b-thinking-32k)\n\nRun open-notebook:\n\ndocker compose -f docker-compose-host-ollama.yml up -d\n\n\nOr use the default compose:\n\ndocker compose up -d\n\nSetup\n\nThe skill expects open-notebook at:\n\nUI: http://localhost:8502\nAPI: http://localhost:5055\nFunctions (INCLUDED)\n\nThis skill provides these PowerShell functions directly:\n\nAdd-ToNotebook\nfunction Add-ToNotebook {\n    param(\n        [string]$Content,\n        [string]$NotebookId = \"YOUR_NOTEBOOK_ID\"\n    )\n    $body = @{\n        content = $Content\n        notebook_id = $NotebookId\n        type = \"text\"\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"http://localhost:5055/api/sources/json\" -Method Post -ContentType \"application/json\" -Body $body\n}\n\nSearch-Notebook\nfunction Search-Notebook {\n    param(\n        [string]$Query,\n        [string]$NotebookId = \"YOUR_NOTEBOOK_ID\"\n    )\n    $body = @{\n        question = $Query\n        notebook_ids = @($NotebookId)\n        strategy_model = \"model:YOUR_MODEL_ID\"\n        answer_model = \"model:YOUR_MODEL_ID\"\n        final_answer_model = \"model:YOUR_MODEL_ID\"\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"http://localhost:5055/api/search/ask\" -Method Post -ContentType \"application/json\" -Body $body\n}\n\nNew-Notebook\nfunction New-Notebook {\n    param(\n        [string]$Name,\n        [string]$Description = \"\"\n    )\n    $body = @{\n        name = $Name\n        description = $Description\n    } | ConvertTo-Json\n    Invoke-RestMethod -Uri \"http://localhost:5055/api/notebooks\" -Method Post -ContentType \"application/json\" -Body $body\n}\n\nNotebook IDs\n\nAfter creating notebooks, update these variables in your scripts:\n\n$SIMULATION = \"notebook:YOUR_SIMULATION_ID\"\n$CONSCIOUSNESS = \"notebook:YOUR_CONSCIOUSNESS_ID\"\n$ENJAMBRE = \"notebook:YOUR_ENJAMBRE_ID\"\n$OSIRIS = \"notebook:YOUR_OSIRIS_ID\"\n$RESEARCH = \"notebook:YOUR_RESEARCH_ID\"\n\nExample Usage\n# Create a new notebook\nNew-Notebook -Name \"My Research\" -Description \"Research notes\"\n\n# Save content\nAdd-ToNotebook -Content \"This is my insight\" -NotebookId \"notebook:xxx\"\n\n# Query knowledge\n$result = Search-Notebook -Query \"What did I learn about X?\" -NotebookId \"notebook:xxx\"\n\nConfiguration Required\n\nBefore using, you MUST:\n\nRun open-notebook with Docker\nCreate notebooks via the UI (http://localhost:8502) or API\nGet your notebook IDs from the API response\nUpdate the $NotebookId parameters in the functions\nRequirements\nDocker Desktop running\nOllama with at least one model installed\nopen-notebook containers running (SurrealDB + app)\nTroubleshooting\nIf API fails, check containers: docker ps\nCheck open-notebook logs: docker compose logs\nVerify Ollama is running: curl http://localhost:11434/api/tags\nVersion\n\n1.0.1 - Improved documentation, included function examples"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/nantes/open-notebook-integration",
    "publisherUrl": "https://clawhub.ai/nantes/open-notebook-integration",
    "owner": "nantes",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/open-notebook-integration",
    "downloadUrl": "https://openagent3.xyz/downloads/open-notebook-integration",
    "agentUrl": "https://openagent3.xyz/skills/open-notebook-integration/agent",
    "manifestUrl": "https://openagent3.xyz/skills/open-notebook-integration/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/open-notebook-integration/agent.md"
  }
}