Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage Notion workspace — search pages, read content, create pages in databases, append blocks, and list databases. Uses Notion REST API directly via urllib/...
Manage Notion workspace — search pages, read content, create pages in databases, append blocks, and list databases. Uses Notion REST API directly via urllib/...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Manage your Notion workspace from the CLI or as an importable Python module.
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.
python3 scripts/notion.py search "project notes" python3 scripts/notion.py search "budget" --type database
# Metadata only python3 scripts/notion.py read PAGE_ID # With block content python3 scripts/notion.py read PAGE_ID --blocks
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"}}}'
python3 scripts/notion.py append PAGE_ID --text "New paragraph content"
python3 scripts/notion.py databases
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()
FilePurposescripts/notion.pyCLI + importable modulereferences/notion-api.mdNotion API quick reference
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)
Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.
Largest current source with strong distribution and engagement signals.