# 安装 openai-whisper

- 类型: Skill 技能
- 说明: 使用本地 Whisper CLI 将音频语音快速转成文本，无需 API 密钥。
- 仓库: https://github.com/openclaw/openclaw
- ⚠ 安全: 整体偏低风险：材料描述的是本地 Whisper CLI 转写，无需 API 密钥，主要处理在本机完成。需留意首次运行会下载模型，以及来源元数据存在不一致/不完整之处，建议在使用前核验仓库与发布来源。

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

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

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

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

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

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

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

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