{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-skill-notion-workspace",
    "name": "Notion Workspace",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-notion-workspace",
    "canonicalUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-notion-workspace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/openclaw-skill-notion-workspace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-notion-workspace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/notion-api.md",
      "scripts/notion.py"
    ],
    "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. 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. 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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/openclaw-skill-notion-workspace"
    },
    "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/openclaw-skill-notion-workspace",
    "agentPageUrl": "https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-notion-workspace/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "notion-workspace Skill",
        "body": "Manage your Notion workspace from the CLI or as an importable Python module."
      },
      {
        "title": "Setup",
        "body": "Set your Notion integration token:\n\nexport NOTION_TOKEN=ntn_...\n\nOr the default token embedded in the script will be used.\n\nMake sure your Notion integration has access to the pages/databases you want to use.\nIn Notion: open a page → Share → Invite your integration."
      },
      {
        "title": "Search",
        "body": "python3 scripts/notion.py search \"project notes\"\npython3 scripts/notion.py search \"budget\" --type database"
      },
      {
        "title": "Read a Page",
        "body": "# Metadata only\npython3 scripts/notion.py read PAGE_ID\n\n# With block content\npython3 scripts/notion.py read PAGE_ID --blocks"
      },
      {
        "title": "Create a Page in a Database",
        "body": "python3 scripts/notion.py create DATABASE_ID --title \"New Page Title\"\n\n# With extra properties\npython3 scripts/notion.py create DATABASE_ID --title \"Task\" --props '{\"Status\": {\"select\": {\"name\": \"In Progress\"}}}'"
      },
      {
        "title": "Append Text to a Page",
        "body": "python3 scripts/notion.py append PAGE_ID --text \"New paragraph content\""
      },
      {
        "title": "List Databases",
        "body": "python3 scripts/notion.py databases"
      },
      {
        "title": "As a Python Module",
        "body": "from scripts.notion import search, read_page_content, create_page, append_blocks, list_databases\n\n# Search\nresults = search(\"meeting notes\")\nfor item in results[\"results\"]:\n    print(item[\"id\"], item[\"object\"])\n\n# Read page + blocks\ndata = read_page_content(\"PAGE_ID\")\nprint(data[\"page\"])\nprint(data[\"blocks\"])\n\n# Create page\npage = create_page(\"DATABASE_ID\", \"My New Page\")\nprint(page[\"url\"])\n\n# Append text\nappend_blocks(\"PAGE_ID\", \"This is a new paragraph.\")\n\n# List databases\ndbs = list_databases()"
      },
      {
        "title": "Files",
        "body": "FilePurposescripts/notion.pyCLI + importable modulereferences/notion-api.mdNotion API quick reference"
      },
      {
        "title": "Notes",
        "body": "Uses urllib (stdlib only, no SDK needed)\nNotion API version: 2022-06-28\nRate limit: ~3 req/sec\nPage IDs can be with or without dashes (both work)"
      }
    ],
    "body": "notion-workspace Skill\n\nManage your Notion workspace from the CLI or as an importable Python module.\n\nSetup\n\nSet your Notion integration token:\n\nexport NOTION_TOKEN=ntn_...\n\n\nOr the default token embedded in the script will be used.\n\nMake sure your Notion integration has access to the pages/databases you want to use.\nIn Notion: open a page → Share → Invite your integration.\n\nUsage\nSearch\npython3 scripts/notion.py search \"project notes\"\npython3 scripts/notion.py search \"budget\" --type database\n\nRead a Page\n# Metadata only\npython3 scripts/notion.py read PAGE_ID\n\n# With block content\npython3 scripts/notion.py read PAGE_ID --blocks\n\nCreate a Page in a Database\npython3 scripts/notion.py create DATABASE_ID --title \"New Page Title\"\n\n# With extra properties\npython3 scripts/notion.py create DATABASE_ID --title \"Task\" --props '{\"Status\": {\"select\": {\"name\": \"In Progress\"}}}'\n\nAppend Text to a Page\npython3 scripts/notion.py append PAGE_ID --text \"New paragraph content\"\n\nList Databases\npython3 scripts/notion.py databases\n\nAs a Python Module\nfrom scripts.notion import search, read_page_content, create_page, append_blocks, list_databases\n\n# Search\nresults = search(\"meeting notes\")\nfor item in results[\"results\"]:\n    print(item[\"id\"], item[\"object\"])\n\n# Read page + blocks\ndata = read_page_content(\"PAGE_ID\")\nprint(data[\"page\"])\nprint(data[\"blocks\"])\n\n# Create page\npage = create_page(\"DATABASE_ID\", \"My New Page\")\nprint(page[\"url\"])\n\n# Append text\nappend_blocks(\"PAGE_ID\", \"This is a new paragraph.\")\n\n# List databases\ndbs = list_databases()\n\nFiles\nFile\tPurpose\nscripts/notion.py\tCLI + importable module\nreferences/notion-api.md\tNotion API quick reference\nNotes\nUses urllib (stdlib only, no SDK needed)\nNotion API version: 2022-06-28\nRate limit: ~3 req/sec\nPage IDs can be with or without dashes (both work)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-notion-workspace",
    "publisherUrl": "https://clawhub.ai/mrnsmh/openclaw-skill-notion-workspace",
    "owner": "mrnsmh",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-skill-notion-workspace",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-skill-notion-workspace",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent.md"
  }
}