# 安装 crabbox

- 类型: Skill 技能
- 说明: 调用 Crabbox 跨平台执行远程验证，并返回真实提供方与实例标识。
- 仓库: https://github.com/openclaw/openclaw
- ⚠ 安全: 该技能材料显示其本体为 prompt-only，且未声明密钥或固定远程端点；结合 GitHub 开源与极高社区采用度，整体偏低风险。需注意的是 README 明确讨论了通过 Crabbox 连接 AWS/Blacksmith 等远程环境的使用场景，因此若后续接入真实包装器/后端，网络外发与远程执行边界应另行核验。

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

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

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

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

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

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

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

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