# Send Notion Workspace to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "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",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/notion-api.md",
      "scripts/notion.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclaw-skill-notion-workspace",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T14:07:03.511Z",
      "expiresAt": "2026-05-07T14:07:03.511Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-notion-workspace",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-notion-workspace",
        "contentDisposition": "attachment; filename=\"openclaw-skill-notion-workspace-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclaw-skill-notion-workspace"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### notion-workspace Skill

Manage your Notion workspace from the CLI or as an importable Python module.

### Setup

Set your Notion integration token:

export NOTION_TOKEN=ntn_...

Or the default token embedded in the script will be used.

Make sure your Notion integration has access to the pages/databases you want to use.
In Notion: open a page → Share → Invite your integration.

### Search

python3 scripts/notion.py search "project notes"
python3 scripts/notion.py search "budget" --type database

### Read a Page

# Metadata only
python3 scripts/notion.py read PAGE_ID

# With block content
python3 scripts/notion.py read PAGE_ID --blocks

### Create a Page in a Database

python3 scripts/notion.py create DATABASE_ID --title "New Page Title"

# With extra properties
python3 scripts/notion.py create DATABASE_ID --title "Task" --props '{"Status": {"select": {"name": "In Progress"}}}'

### Append Text to a Page

python3 scripts/notion.py append PAGE_ID --text "New paragraph content"

### List Databases

python3 scripts/notion.py databases

### As a Python Module

from scripts.notion import search, read_page_content, create_page, append_blocks, list_databases

# Search
results = search("meeting notes")
for item in results["results"]:
    print(item["id"], item["object"])

# Read page + blocks
data = read_page_content("PAGE_ID")
print(data["page"])
print(data["blocks"])

# Create page
page = create_page("DATABASE_ID", "My New Page")
print(page["url"])

# Append text
append_blocks("PAGE_ID", "This is a new paragraph.")

# List databases
dbs = list_databases()

### Files

FilePurposescripts/notion.pyCLI + importable modulereferences/notion-api.mdNotion API quick reference

### Notes

Uses urllib (stdlib only, no SDK needed)
Notion API version: 2022-06-28
Rate limit: ~3 req/sec
Page IDs can be with or without dashes (both work)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mrnsmh
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T14:07:03.511Z
- Expires at: 2026-05-07T14:07:03.511Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-skill-notion-workspace)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-skill-notion-workspace/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-skill-notion-workspace)