# 安装 goplaces

- 类型: Skill 技能
- 说明: 通过 goplaces 查询地点搜索、详情与评价，支持友好查看或脚本化 JSON 输出。
- 仓库: https://github.com/openclaw/nix-openclaw-tools
- ⚠ 安全: 该技能材料本身属于 prompt-only，未直接携带可执行逻辑，整体风险偏低；但 README 明确指向需使用 Google Places API key 的外部 CLI，并会把查询词与位置等数据发送到 Google 或可配置代理，且仓库社区与维护信号较弱，需留意。

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

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

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

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

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

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

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

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