notion
使用 Notion API 创建和管理页面、数据库(数据源)和区块。支持 Notion 内容的增删改查,是知识管理工作流的核心集成。
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
使用 Notion API 创建和管理页面、数据库(数据源)和区块。支持 Notion 内容的增删改查,是知识管理工作流的核心集成。
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Expert guide for the NotebookLM CLI (`nlm`) and MCP server - interfaces for Google NotebookLM. Use this skill when users want to interact with NotebookLM programmatically, including: creating/managing notebooks, adding sources (URLs, YouTube, text, Google Drive), generating content (podcasts, reports, quizzes, flashcards, mind maps, slides, infographics, videos, data tables), conducting research, chatting with sources, or automating NotebookLM workflows. Triggers on mentions of "nlm", "notebooklm", "notebook lm", "podcast generation", "audio overview", or any NotebookLM-related automation task.
Use the ctx7 CLI to fetch library documentation, manage AI coding skills, and configure Context7 MCP. Activate when the user mentions "ctx7" or "context7", needs current docs for any library, wants to install/search/generate skills, or needs to set up Context7 for their AI coding agent.
通过 Alpha Vantage API 访问实时和历史股票市场数据、外汇汇率、加密货币价格、大宗商品、经济指标以及 50 多种技术指标。当需要获取股票价格(OHLCV)、公司基本面(损益表、资产负债表、现金流量表)、财报、期权数据、市场新闻/情绪、内部交易、GDP、CPI、国债收益率、金/银/原油价格、比特币价格或计算技术指标(SMA, EMA, MACD, RSI, 布林带)时使用。
用于访问、分析和提取 SEC EDGAR 申报数据的 Python 库。当处理 SEC 申报文件、财务报表(损益表、资产负债表、现金流量表)、XBRL 财务数据、内部交易(Form 4)、机构持仓(13F)、年度/季度报告(10-K, 10-Q)、代理声明(DEF 14A)、8-K 即时事件、按代码/CIK/行业进行公司筛选时使用。支持多周期财务分析及任何 SEC 合规性申报。
用于处理地理空间矢量数据(包括 Shapefile、GeoJSON 和 GeoPackage 文件)的 Python 库。当进行空间分析、几何操作、坐标转换、空间连接、图层叠加、等值线地图绘制或任何涉及读写和分析矢量地理数据的任务时使用。支持 PostGIS 数据库、交互式地图,并与 matplotlib/folium/cartopy 集成。
查询 OFR (美国金融研究办公室) 的 Hedge Fund Monitor API,获取对冲基金数据,包括 SEC Form PF 聚合统计、CFTC 期货交易商持仓、FICC 赞助回购交易量以及 FRB SCOOS 交易对手融资条款。访问关于对冲基金规模、杠杆、交易对手、流动性、复杂性和风险管理的时间序列数据。无需 API Key 或注册。适用于对冲基金研究、系统性风险监测、金融稳定性研究及回购市场分析。
| name | notion |
| description | 使用 Notion API 创建和管理页面、数据库(数据源)和区块。支持 Notion 内容的增删改查,是知识管理工作流的核心集成。 |
| homepage | https://developers.notion.com |
| metadata | {"openclaw":{"emoji":"📝","requires":{"env":["NOTION_API_KEY"]},"primaryEnv":"NOTION_API_KEY"}} |
使用 Notion API 创建、读取、更新页面、数据源(数据库)和区块。
ntn_ 或 secret_ 开头)mkdir -p ~/.config/notion
echo "ntn_your_key_here" > ~/.config/notion/api_key
所有请求都需要以下头部:
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"
注意:
Notion-Version头部是必需的。本技能使用2025-09-03版本。在此版本中,数据库在 API 中被称为“数据源(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": "页面标题"}'
获取页面:
curl "https://api.notion.com/v1/pages/{page_id}" \
-H "Authorization: Bearer $NOTION_KEY" \
-H "Notion-Version: 2025-09-03"
获取页面内容(区块):
curl "https://api.notion.com/v1/blocks/{page_id}/children" \
-H "Authorization: Bearer $NOTION_KEY" \
-H "Notion-Version: 2025-09-03"
在数据源中创建页面:
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": "新项目"}}]},
"Status": {"select": {"name": "Todo"}}
}
}'
查询数据源(数据库):
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"}]
}'
创建数据源(数据库):
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": "我的数据库"}}],
"properties": {
"Name": {"title": {}},
"Status": {"select": {"options": [{"name": "Todo"}, {"name": "Done"}]}},
"Date": {"date": {}}
}
}'
更新页面属性:
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"}}}}'
向页面添加区块:
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": "你好"}}]}}
]
}'
数据库项目的常见属性格式:
{"title": [{"text": {"content": "..."}}]}{"rich_text": [{"text": {"content": "..."}}]}{"select": {"name": "Option"}}{"multi_select": [{"name": "A"}, {"name": "B"}]}{"date": {"start": "2024-01-15", "end": "2024-01-16"}}{"checkbox": true}{"number": 42}{"url": "https://..."}{"email": "a@b.com"}{"relation": [{"id": "page_id"}]}/data_sources/ 端点进行查询和获取。database_id 和一个 data_source_id。
database_id (parent: {"database_id": "..."})。data_source_id (POST /v1/data_sources/{id}/query)。"object": "data_source" 返回,并带有 data_source_id。parent.data_source_id 和 parent.database_id。GET /v1/data_sources/{data_source_id}。is_inline: true 可将其嵌入页面中。