Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

notionNotion 知识协作

Agent Skill

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

总安装

689

周安装

29

GitHub Stars

151

下载量

241
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:notion(Notion 知识协作)
来源仓库:https://github.com/aws-samples/sample-strands-agent-with-agentcore
仓库路径:skills/notion
安装命令:
npx skills add https://github.com/aws-samples/sample-strands-agent-with-agentcore --skill notion
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aws-samples/sample-strands-agent-with-agentcore --skill notion

简介

用于读取和写入 Notion 页面与数据库内容,支持全文检索和结构化记录操作。

  • 适合同步知识库条目、更新任务状态或将外部数据导入 Notion 工作区。
  • 使用 notion_search 查找页面或数据库,再通过 notion_fetch 获取完整内容。
  • 必须先在 Notion 中授权集成到目标页面,并确认字段类型与写入格式匹配。
  • notion 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Notion

Available Tools

  • notion_search(query?, filter_type?, page_size?): Search across all accessible pages and databases.

- query (string, optional): Search text. Empty string returns all accessible pages. - filter_type (string, optional): "page" or "database". Use "database" to list databases. - page_size (integer, optional, default: 10, max: 100)

  • notion_fetch(page_id, include_block_ids?): Fetch a page's full content as readable markdown (metadata + all blocks in one call).

- page_id (string, required): Page or database entry ID. - include_block_ids (boolean, optional, default: false): If true, appends each block's ID as <!-- id:... -->. Use this when you need to update a specific block with notion_update_block. - Returns: title, URL, last-edited time, and full body as markdown.

  • notion_create_page(parent_type, parent_id, title, properties_json?, content_markdown?): Create a new page.

- parent_type (string, required): "database", "page", or "workspace" (workspace root) - parent_id (string, required): Parent UUID — ignored when parent_type="workspace" - title (string, required): Page title - properties_json (string, optional): Database properties as a JSON string — e.g., '{"Status": {"select": {"name": "In Progress"}}}' - content_markdown (string, optional): Initial body content as markdown (see Markdown Support below)

  • notion_update_page(page_id, properties_json, archived?): Update page properties (metadata/database fields only, not content blocks).
  • notion_update_block(block_id, content_markdown): Replace the content of a specific existing block.

- block_id (string, required): Block ID — obtain via notion_fetch(include_block_ids=True) - content_markdown (string, required): New content as a single markdown line (only the first block is used) - page_id (string, required) - properties_json (string, required): Properties as a JSON string - archived (boolean, optional): true to archive, false to unarchive

  • notion_append_blocks(page_id, content_markdown): Append new content blocks to the end of an existing page.

- page_id (string, required) - content_markdown (string, required): Markdown content to append (see Markdown Support below)

Markdown Support

Both notion_create_page (content_markdown) and notion_append_blocks support:

SyntaxBlock type
# Title / ## Heading / ### Subheading_1 / heading_2 / heading_3
- item or * itembulleted_list_item
1. itemnumbered_list_item
- [] taskto_do (unchecked)
- [x] taskto_do (checked)
``` `python\ncode\n` ```code block with language
> textquote
---divider
**bold**bold inline
*italic*italic inline
` code `inline code

Common Workflows

Find and read a page:

1. notion_search(query="page name") → get page id
2. notion_fetch(page_id) → read full content

Create a new page with content:

notion_create_page(
  parent_type="page",
  parent_id="<parent-page-id>",
  title="My Page",
  content_markdown="## Overview\n\nContent here..."
)

Add content to existing page:

notion_append_blocks(
  page_id="<page-id>",
  content_markdown="## New Section\n\n- Point 1\n- Point 2"
)

Edit a specific block:

1. notion_fetch(page_id, include_block_ids=True)
   → ## Old Heading  <!-- id:abc-123 -->
2. notion_update_block(block_id="abc-123", content_markdown="## New Heading")

List databases:

notion_search(filter_type="database")

Use-Case Guides

For specific workflow patterns, load the reference files:

  • knowledge-capture.md — Save conversation insights, decisions, and how-to guides to Notion wikis and databases
  • meeting-intelligence.md — Prepare meeting materials by gathering Notion context and creating pre-reads and agendas
  • research-documentation.md — Research across Notion pages, synthesize findings, and write structured reports
  • spec-to-implementation.md — Turn spec pages into implementation plans, tasks, and progress tracking

Load a reference with: skill_dispatcher("notion", reference="knowledge-capture.md")

UI Guidance (from tools-config)

Notion Tool Usage:

  • notion_search: Search pages and databases. Use filter_type='database' to list databases.
  • notion_fetch: Read a page's full content as markdown (metadata + all blocks in one call).
  • notion_create_page: Create a new page with markdown content.
  • notion_update_page: Update page properties (not content — use notion_append_blocks for content).
  • notion_append_blocks: Add markdown content to an existing page.

Typical workflows:

  • Find and read: notion_search → notion_fetch
  • Create from scratch: notion_create_page with content_markdown
  • Update content: notion_append_blocks with markdown

Markdown support in content_markdown/notion_append_blocks:

  • Headings: # H1 / ## H2 / ### H3
  • Lists: - bullet / 1. numbered
  • To-do: - [] unchecked / - [x] checked
  • Code: python...
  • Quote: > text
  • Divider: ---
  • Inline: bold, *italic*, code

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.49%
按下载量换算90

Claude

31.81%
按下载量换算77

Cursor

17.33%
按下载量换算42

Gemini CLI

8.23%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills