一键导入
notion
Search, read, create, and update Notion pages and databases. Supports knowledge capture, meeting prep, research documentation, and spec-to-task workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search, read, create, and update Notion pages and databases. Supports knowledge capture, meeting prep, research documentation, and spec-to-task workflows.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Deep research with structured reports and charts. ONLY use when the user explicitly requests research/analysis, or needs data visualization with charts, or quantitative/comparative analysis across multiple sources. Do NOT use for simple questions or quick lookups.
Search the web and fetch content from URLs for current information, news, and research topics.
Web browser automation for tasks requiring UI interaction, login-protected pages, or human-like browsing when APIs are insufficient.
Autonomous coding agent. Delegate any task that involves understanding, writing, or running code — from a GitHub issue, a bug report, or a user request. It explores, implements, and verifies on its own.
Create hand-drawn style diagrams and flowcharts using Excalidraw
Create, modify, and manage Excel spreadsheets.
| name | notion |
| description | Search, read, create, and update Notion pages and databases. Supports knowledge capture, meeting prep, research documentation, and spec-to-task workflows. |
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.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 titleproperties_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 stringarchived (boolean, optional): true to archive, false to unarchivenotion_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)Both notion_create_page (content_markdown) and notion_append_blocks support:
| Syntax | Block type |
|---|---|
# Title / ## Heading / ### Sub | heading_1 / heading_2 / heading_3 |
- item or * item | bulleted_list_item |
1. item | numbered_list_item |
- [ ] task | to_do (unchecked) |
- [x] task | to_do (checked) |
```python\ncode\n``` | code block with language |
> text | quote |
--- | divider |
**bold** | bold inline |
*italic* | italic inline |
`code` | inline code |
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")
For specific workflow patterns, load the reference files:
Load a reference with: skill_dispatcher("notion", reference="knowledge-capture.md")
Notion Tool Usage:
Typical workflows:
Markdown support in content_markdown/notion_append_blocks:
python ... code