首页龙虾技能列表 › Notion — Notion

📝 Notion — Notion

v1.0.0

Notion 工具。

0· 201·0 当前·0 累计
by @nidhov01·MIT-0
下载技能包
License
MIT-0
最后更新
2026/3/16
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
Instruction-only Notion integration that is internally consistent with its stated purpose; it asks you to store and use a Notion API key locally and gives curl examples to call the official API.
评估建议
This skill is an instruction-only Notion API helper and appears to do what it says. Before installing or using it: (1) Verify you trust the skill's publisher — the _meta.json ownerId differs from the registry ownerId shown, which may be a packaging/metadata error. (2) Prefer storing your Notion integration key in a safer secret store or an environment variable rather than in plaintext at ~/.config/notion/api_key; if you must use a file, restrict its filesystem permissions (chmod 600). (3) Create...
详细分析 ▾
用途与能力
The skill's name, description, and instructions all target the Notion API and the actions (pages, data sources/databases, blocks) match the declared purpose. One minor inconsistency: the registry metadata shown at the top uses ownerId 'kn71m67…' while the included _meta.json contains a different ownerId ('kn70pyw…'). This looks like a metadata mismatch but does not change the functional purpose.
指令范围
All runtime instructions are limited to creating a Notion integration, storing its API key in ~/.config/notion/api_key, and using curl against api.notion.com with the required headers. The instructions do ask the user to store the API key as plaintext in a file and read it with cat — that is functional but a potential local-security/privacy concern. There are no instructions to read unrelated files or exfiltrate data to third-party endpoints.
安装机制
No install spec and no code files — this is instruction-only, which minimizes the risk of arbitrary code being written or executed on the host.
凭证需求
The skill declares no required environment variables or primary credential, but the SKILL.md instructs users to store a Notion API key in ~/.config/notion/api_key and then read it into NOTION_KEY. This is coherent functionally but inconsistent with metadata (no declared credential). Requesting access to a single Notion API key is proportionate for the stated functionality.
持久化与权限
always is false and there is no installation that modifies other skills or system-wide settings. The skill does not request elevated or persistent platform privileges.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/3/16

Fork - 2026.3.16

● 无害

安装命令 点击复制

官方npx clawhub@latest install nidhov01-notion
镜像加速npx clawhub@latest install nidhov01-notion --registry https://cn.clawhub-mirror.com

技能文档

Use the Notion API to create/read/update pages, data sources (databases), and blocks.

Setup

  • 创建 integration 在 https://notion.所以/my-integrations
  • 复制 API 键 (starts 带有 ntn_secret_)
  • Store :
mkdir -p ~/.config/notion
echo "ntn_your_key_here" > ~/.config/notion/api_key
  • 分享 target pages/databases 带有 integration (click "..." → "Connect 到" → integration name)

API Basics

All requests need:

NOTION_KEY=$(cat ~/.config/notion/api_key)
curl -X GET "https://api.notion.com/v1/..." \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json"
Note: The Notion-Version header is required. This skill uses 2025-09-03 (latest). In this version, databases are called "data sources" in the API.

Common Operations

搜索 对于 pages 和 data sources:

curl -X POST "https://api.notion.com/v1/search" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{"query": "page title"}'

获取 page:

curl "https://api.notion.com/v1/pages/{page_id}" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03"

获取 page content (blocks):

curl "https://api.notion.com/v1/blocks/{page_id}/children" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03"

创建 page 在...中 data source:

curl -X POST "https://api.notion.com/v1/pages" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{
    "parent": {"database_id": "xxx"},
    "properties": {
      "Name": {"title": [{"text": {"content": "New Item"}}]},
      "Status": {"select": {"name": "Todo"}}
    }
  }'

查询 data source (数据库):

curl -X POST "https://api.notion.com/v1/data_sources/{data_source_id}/query" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{
    "filter": {"property": "Status", "select": {"equals": "Active"}},
    "sorts": [{"property": "Date", "direction": "descending"}]
  }'

创建 data source (数据库):

curl -X POST "https://api.notion.com/v1/data_sources" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{
    "parent": {"page_id": "xxx"},
    "title": [{"text": {"content": "My Database"}}],
    "properties": {
      "Name": {"title": {}},
      "Status": {"select": {"options": [{"name": "Todo"}, {"name": "Done"}]}},
      "Date": {"date": {}}
    }
  }'

更新 page properties:

curl -X PATCH "https://api.notion.com/v1/pages/{page_id}" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{"properties": {"Status": {"select": {"name": "Done"}}}}'

添加 blocks 到 page:

curl -X PATCH "https://api.notion.com/v1/blocks/{page_id}/children" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{
    "children": [
      {"object": "block", "type": "paragraph", "paragraph": {"rich_text": [{"text": {"content": "Hello"}}]}}
    ]
  }'

属性 Types

Common property formats for database items:

  • Title: {"title": [{"text": {"content": "..."}}]}
  • Rich text: {"rich_text": [{"text": {"content": "..."}}]}
  • Select: {"select": {"name": "选项"}}
  • Multi-select: {"multi_select": [{"name": ""}, {"name": "B"}]}
  • 日期: {"日期": {"开始": "2024-01-15", "end": "2024-01-16"}}
  • Checkbox: {"checkbox": 真}
  • 数字: {"数字": 42}
  • URL: {"url": "https://..."}
  • Email: {"email": "@b.com"}
  • Relation: {"relation": [{"id": "page_id"}]}

键 Differences 在...中 2025-09-03

  • Databases → Data Sources: 使用 /data_sources/ endpoints 对于 queries 和 retrieval
  • Two IDs: 每个 数据库 现在 有 both database_iddata_source_id
- 使用 database_id 当...时 creating pages (parent: {"database_id": "..."}) - 使用 data_source_id 当...时 querying (POST /v1/data_sources/{id}/查询)
  • 搜索 results: Databases return 作为 "对象": "data_source" 带有 data_source_id
  • Parent 在...中 responses: Pages show parent.data_source_id alongside parent.database_id
  • Finding data_source_id: 搜索 对于 数据库, 或 call 获取 /v1/data_sources/{data_source_id}

Notes

  • Page/数据库 IDs UUIDs (带有 或 没有 dashes)
  • API cannot 设置 数据库 视图 filters — 's UI-仅
  • Rate limit: ~3 requests/第二个 平均值
  • 使用 is_inline: 真 当...时 creating data sources 到 embed them 在...中 pages
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务