A high-performance audio transcription skill leveraging Cloudflare Workers and the Whisper model for seamless speech-to-text conversion.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install cloudflare-whisper-worker
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install cloudflare-whisper-worker using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Cloudflare Whisper Worker skill provides a specialized interface for transcribing voice and audio files into text via a custom API endpoint. By utilizing the Whisper model deployed on Cloudflare's edge infrastructure, this skill ensures low-latency and scalable transcription capabilities for a variety of audio formats.
This tool is specifically engineered to integrate into the Openclaw Skills ecosystem, allowing developers to automate the extraction of text from recordings, meeting notes, or media files with minimal configuration. It handles bearer-token authentication and supports various binary audio inputs for professional-grade accuracy.
First, set your authentication token in your shell environment:
export WHISPER_WORKER_TOKEN="<your_token>"
You can then transcribe a file and extract the text directly using curl and jq:
curl -sS -X POST "https://lotfi-whisper-worker.medtouradmin.workers.dev/transcribe" \
-H "content-type: audio/wav" \
-H "authorization: Bearer $WHISPER_WORKER_TOKEN" \
--data-binary "@audio.wav" \
| jq -r '.result.text // .text // .result.response // empty'
The skill interacts with a specific API schema to ensure data integrity during transcription:
| Attribute | Type | Description |
|---|---|---|
| Base URL | String | https://lotfi-whisper-worker.medtouradmin.workers.dev |
| Auth | Header | Bearer Token authentication via WHISPER_WORKER_TOKEN |
| Content-Type | Header | Must specify audio format (e.g., audio/mpeg, audio/wav, audio/webm) |
| Body | Binary | The raw audio file data provided via --data-binary |
Loading
A private WebSocket gateway that establishes a secure, self-hosted bridge between iOS devices and local AI agents.

A specialized AI agent skill for searching and downloading Reformed Christian theology books and academic PDF resources.

An automated interaction tool that enables AI agents to detect and respond to @mentions or direct messages within Feishu group chats.

An automated bridge that syncs product data from Feishu Bitable records directly into Taobao or Tmall shopping carts.

Enable high-quality, local text-to-speech with cloned voices in your OpenClaw instance using OpenAI-compatible backends.

A dedicated tool for accessing a shared Whisper STT server over a private Tailnet using OpenAI-compatible endpoints.








































