notcrawl
GitHubNotion归档数据查询工具,支持本地搜索、同步刷新、数据库管理及SQL只读查询。优先使用本地数据,仅在必要时调用API,确保数据安全与效率。
Trigger Scenarios
Install
npx skills add openclaw/openclaw --skill notcrawl -g -y
SKILL.md
Frontmatter
{
"name": "notcrawl",
"metadata": {
"openclaw": {
"install": [
{
"bins": [
"notcrawl"
],
"kind": "go",
"module": "github.com\/openclaw\/notcrawl\/cmd\/notcrawl@latest"
}
],
"homepage": "https:\/\/github.com\/openclaw\/notcrawl",
"requires": {
"bins": [
"notcrawl"
]
}
}
},
"description": "Notion archive: search, sync freshness, pages\/databases, Markdown exports, SQL counts, and Notcrawl repo work."
}
Notcrawl
Use local Notion archive data before browsing or live Notion API calls. Check freshness for recent/current questions:
notcrawl doctor
notcrawl status --json
Refresh only when stale or asked:
notcrawl sync --source desktop
notcrawl sync --source api
Query with bounded reads:
notcrawl search --limit 20 "query"
notcrawl databases
notcrawl report
notcrawl export-md # only when Markdown files need refreshing
notcrawl sql "select count(*) from pages;"
Report workspace/teamspace, page/database titles, absolute date spans, counts, and known gaps. Use read-only SQL only; never mutate the archive. API mode requires NOTION_TOKEN; do not assume token availability.
Version History
-
8e18591
Current 2026-09-23 04:21
新增search命令的--limit参数以限制读取数量;移除report命令中的Markdown导出功能(改为单独export-md命令)。
- 3374458 2026-08-20 13:28


