# 安装 notcrawl

- 类型: Skill 技能
- 说明: 帮助用户检索与导出 Notion 归档内容，并进行同步、统计和仓库处理。
- 仓库: https://github.com/openclaw/openclaw
- ⚠ 安全: 该技能材料显示其主要围绕本地 Notion 归档数据进行查询与同步，且被标记为 prompt-only、开源、社区采用度很高，整体风险较低。未见明确远程端点或高危红旗；但文档提到可选的 API 同步与本地归档访问，因此涉及常规的数据访问与潜在网络能力，宜保持基本审慎。

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "notcrawl" 技能：
1. 下载 https://raw.githubusercontent.com/openclaw/openclaw/main/.agents/skills/notcrawl/SKILL.md
2. 保存为 ~/.claude/skills/notcrawl/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Codex
```
请帮我安装 askskill 上的 "notcrawl" 技能：
1. 下载 https://raw.githubusercontent.com/openclaw/openclaw/main/.agents/skills/notcrawl/SKILL.md
2. 保存为 ~/.codex/skills/notcrawl/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

### Cursor
```
请帮我安装 askskill 上的 "notcrawl" 技能：
1. 下载 https://raw.githubusercontent.com/openclaw/openclaw/main/.agents/skills/notcrawl/SKILL.md
2. 保存为 ~/.cursor/skills/notcrawl/SKILL.md
3. 装好后重载技能，告诉我可以用了
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
mkdir -p '~/.claude/skills/notcrawl' && curl -fsSL 'https://raw.githubusercontent.com/openclaw/openclaw/main/.agents/skills/notcrawl/SKILL.md' -o '~/.claude/skills/notcrawl/SKILL.md'
```

### Codex
```bash
mkdir -p '~/.codex/skills/notcrawl' && curl -fsSL 'https://raw.githubusercontent.com/openclaw/openclaw/main/.agents/skills/notcrawl/SKILL.md' -o '~/.codex/skills/notcrawl/SKILL.md'
```

### Cursor
```bash
mkdir -p '~/.cursor/skills/notcrawl' && curl -fsSL 'https://raw.githubusercontent.com/openclaw/openclaw/main/.agents/skills/notcrawl/SKILL.md' -o '~/.cursor/skills/notcrawl/SKILL.md'
```
