Agent Skills
› openclaw/openclaw
› notcrawl
notcrawl
GitHub管理本地 Notion 归档数据,支持搜索、同步新鲜度检查及只读 SQL 查询。仅在数据过时或需要时执行同步操作,避免直接调用 API,确保数据安全与效率。
Trigger Scenarios
用户询问基于本地 Notion 存档的问题
需要检查 Notion 数据的新鲜度或进行同步
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\/vincentkoc\/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 "query"
notcrawl databases
notcrawl report
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
- 3374458 Current 2026-08-20 13:28


