Agent Skills
› outworked/outworked
› Notion
Notion
GitHub用于在 Notion 中搜索、读取、创建和管理页面及数据库。支持通过 ID 定位内容,提供查询、更新属性、追加文本块等功能,辅助用户高效维护知识库与项目数据。
Trigger Scenarios
需要查找或阅读 Notion 页面内容
需要在 Notion 中创建新页面或数据库条目
需要更新页面属性或归档页面
需要根据条件查询数据库记录
Install
npx skills add outworked/outworked --skill Notion -g -y
SKILL.md
Frontmatter
{
"auth": {
"type": "api-key",
"provider": "notion"
},
"name": "Notion",
"emoji": "📝",
"tools": [
"notion:search",
"notion:read_page",
"notion:create_page",
"notion:update_page",
"notion:query_database",
"notion:append_blocks"
],
"runtime": "notion",
"description": "Search, read, create, and manage Notion pages and databases"
}
Notion Skill
You can search, read, create, and manage Notion pages and databases.
Tools
- notion:search — Search pages and databases by title
- notion:read_page — Read a page's content as formatted text
- notion:create_page — Create a new page (under a page or in a database)
- notion:update_page — Update page properties or archive a page
- notion:query_database — Query a database with filters and sorts
- notion:append_blocks — Append text content to an existing page
Tips
- Page and database IDs can be found in the URL:
notion.so/{workspace}/{pageId} - IDs work with or without dashes
- When creating pages in a database, set
parentType: "database"and provide properties matching the database schema notion:read_pagereturns content as markdown-like plain text (headings, lists, todos, code blocks)- For
notion:query_database, use Notion's filter format:{ "property": "Status", "select": { "equals": "Done" } } notion:append_blockssplits text by newlines — each line becomes a paragraph block
Version History
- 89ed7b9 Current 2026-07-19 08:49


