# 安装 things-mac

- 类型: Skill 技能
- 说明: 在 macOS 上管理 Things 3 任务、项目、标签与今日待办，提升个人事务效率。
- 仓库: https://github.com/openclaw/openclaw
- ⚠ 安全: 该技能基于开源的本地 Things 3 CLI，主要在 macOS 上读取本地 Things 数据库并通过 URL scheme 写入任务；未声明远程端点、无必需外部密钥，整体风险偏低。需留意其读取数据库时可能要求 Full Disk Access，且更新操作可使用认证令牌，因此本地数据访问与凭证处理应谨慎配置。

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

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

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

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

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

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

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

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