# 安装 apple-notes

- 类型: Skill 技能
- 说明: 通过 macOS 命令行创建、整理、搜索并导出 Apple Notes 笔记。
- 仓库: https://github.com/openclaw/openclaw
- ⚠ 安全: 整体看这是一个本地 macOS 上管理 Apple Notes 的开源 CLI 技能，没有密钥和远程端点，主要风险来自对本机 Notes.app 的自动化访问与本地笔记数据读写，属于常规需留意级别。未见明确的数据外发、异常权限或可疑注入红旗。

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

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

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

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

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

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

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

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