Jump to related tools in the same category or review the original source on GitHub.

Speech & Transcription @steipete Updated 2/26/2026

☁️ Openai Whisper Api OpenClaw Skill - ClawHub

Do you want your AI agent to automate Openai Whisper Api workflows? This free skill from ClawHub helps with speech & transcription tasks without building custom tools from scratch.

What this skill does

Transcribe audio via OpenAI Audio Transcriptions API (Whisper).

Install

npx clawhub@latest install openai-whisper-api

Full SKILL.md

Open original
namedescriptionhomepage
openai-whisper-apiTranscribe audio via OpenAI Audio Transcriptions API (Whisper).https://platform.openai.com/docs/guides/speech-to-text

OpenAI Whisper API (curl)

Transcribe an audio file via OpenAI’s /v1/audio/transcriptions endpoint.

Quick start

{baseDir}/scripts/transcribe.sh /path/to/audio.m4a

Defaults:

  • Model: whisper-1
  • Output: <input>.txt

Useful flags

{baseDir}/scripts/transcribe.sh /path/to/audio.ogg --model whisper-1 --out /tmp/transcript.txt
{baseDir}/scripts/transcribe.sh /path/to/audio.m4a --language en
{baseDir}/scripts/transcribe.sh /path/to/audio.m4a --prompt "Speaker names: Peter, Daniel"
{baseDir}/scripts/transcribe.sh /path/to/audio.m4a --json --out /tmp/transcript.json

API key

Set OPENAI_API_KEY, or configure it in ~/.clawdbot/clawdbot.json:

{
  skills: {
    "openai-whisper-api": {
      apiKey: "OPENAI_KEY_HERE"
    }
  }
}
Original URL: https://github.com/openclaw/skills/blob/main/skills/steipete/openai-whisper-api

Related skills

If this matches your use case, these are close alternatives in the same category.