Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

notion-toolsNotion tools 搜索

Agent Skill

用于处理 Notion 页面、数据库、工作区内容和结构化记录。它适合让 Agent 查询知识库、整理页面内容、创建记录或把外部信息同步到 Notion。使用时需要确认集成是否已被授权到目标页面或数据库,并区分读取、追加和覆盖更新;涉及批量写入或修改数据库属性时,应先核对字段名称、属性类型和目标页面。

总安装

10,771

周安装

440

GitHub Stars

1

下载量

3,450
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:notion-tools(Notion tools 搜索)
来源仓库:https://github.com/jeffreymaomao/notion-tools
安装命令:
openclaw skills install notion-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install notion-tools

简介

notion-tools 允许通过 Notion API 读取或修改页面、数据源和块内容。

  • 适用于 OpenClaw 中需要让 Agent 动态更新知识库或同步外部数据的场景。
  • 通过 openclaw skills install notion-tools 命令安装并绑定 API 凭证。
  • 使用前务必授权到目标资源,明确区分只读与可写权限。
  • 涉及结构变更时应先备份原数据,防止意外丢失关键信息。

SKILL.md

name
notion-tools
description
Use for tasks that read or modify Notion pages, data sources, or blocks via the Notion API.
homepage
https://developers.notion.com
metadata
{"clawdbot":{"emoji":"📝"}}

notion-tools

Use this skill when the user wants to read or modify Notion content through the Notion API.

This skill is for operational API work, not general product explanation. Prefer the workflow below instead of inventing request shapes from memory.

When To Use

Use this skill for:

  • Finding a page, database, or data source in a Notion workspace
  • Reading page properties or page block content
  • Creating pages inside an existing database
  • Querying a data source with filters or sorts
  • Updating page properties
  • Trashing or restoring a page
  • Appending block content to a page

Do not use this skill for:

  • Changing Notion UI-only settings such as saved views, view filters, or layout configuration
  • Tasks that require browser automation instead of the public API

Quick Checks

Before making requests, confirm:

  • Prefer NOTION_KEY if the runtime already provides it
  • If NOTION_KEY is unset in a local shell workflow, optionally load it from ~/.config/notion/api_key
  • The target page or database has been shared with the integration
  • The caller understands that this skill assumes Notion-Version: 2025-09-03

If the environment is not ready, read references/setup.md.

Working Rules

Always:

  • Start with search unless the user already provided a verified page ID or data source ID
  • Read before writing when modifying an existing page, block tree, or database-backed item
  • Inspect the live schema before creating or updating page properties in a database
  • Keep secrets out of output; never print the full API key back to the user
  • Read secrets only when needed to make a Notion API request, not during unrelated planning or explanation

Do not:

  • Assume a property named Name, Status, or Date exists without checking
  • Assume a database ID and a data source ID are interchangeable
  • Overwrite page content when the task only requires appending blocks

Workflow

1. Find the target

Use search first for pages and data sources. If the result is a database-like object, record both IDs when present:

  • id or database_id for page creation parents
  • data_source_id for querying via /v1/data_sources/{id}/query

See references/examples.md for the search request template.

2. Inspect before mutation

Read the current object before writing:

  • GET /v1/pages/{page_id} for page properties
  • GET /v1/blocks/{page_id}/children for page content
  • GET /v1/data_sources/{data_source_id} for schema inspection

See references/examples.md for request templates.

3. Create or update with the live schema

Common write paths:

  • POST /v1/pages to create a page in an existing database
  • PATCH /v1/pages/{page_id} to update page properties
  • PATCH /v1/pages/{page_id} with in_trash: true|false to trash or restore a page
  • PATCH /v1/blocks/{page_id}/children to append blocks

Before writing properties, confirm the exact property names and types from the live schema. Do not describe trashing a page as permanent deletion; this flow moves the page into or out of trash.

See:

  • references/examples.md for create, update, trash, restore, append, and query payloads
  • references/property-patterns.md for common property value shapes
  • references/blocks.md for equation blocks, inline code, code blocks, and table-cell formatting limits

4. Query database-backed content through the data source API

Use /v1/data_sources/{data_source_id}/query for filters, sorts, and pagination. If results are paginated, continue with start_cursor from the previous response.

See references/examples.md for query payloads.

API Notes For This Version

This skill assumes Notion-Version: 2025-09-03.

Important version-specific behavior:

  • Databases are queried through /v1/data_sources/{data_source_id}/query
  • Page creation still uses parent.database_id
  • Search results may expose a data source object instead of older database terminology
  • Page responses may include both parent.database_id and parent.data_source_id
  • Page deletion through the API is a trash operation via in_trash, not a permanent delete

Troubleshooting

If a request fails, check auth, sharing, object IDs, and schema mismatches before changing the payload. For common failure modes, read references/troubleshooting.md.

Safety

  • Never commit the API key or paste it into project files
  • Prefer runtime-injected NOTION_KEY over reading a local token file
  • If a local token file is used, treat it as a convenience fallback for local shells rather than the default credential source
  • Prefer append operations for block content unless the user explicitly asks to replace content
  • If a task may touch many pages, query and inspect a small sample first
  • When the user request is underspecified, return the candidate pages or data sources and ask which one to modify

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.96%
按下载量换算2,655

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills