# 安装 openai-whisper-api

- 类型: Skill 技能
- 说明: 通过 OpenAI 音频转写接口，将语音录音快速转成文本或说话人分段结果。
- 仓库: https://github.com/openclaw/openclaw
- ⚠ 安全: 整体看这是一个低复杂度的本地技能，主要通过脚本调用转录接口；未见明显的凭证滥用、可疑注入或超范围系统权限迹象。由于会读取本地音频并可能向配置的 OpenAI 兼容端点发送内容，属于常规需留意而非高风险。

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

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

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

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

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

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

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

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