VoiceClaw provides fully local, offline speech-to-text and text-to-speech capabilities for Openclaw Skills using Whisper and Piper.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install voiceclaw
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 voiceclaw using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
VoiceClaw is a specialized skill for Openclaw Skills that brings high-performance, on-device voice processing to AI agents. By leveraging whisper.cpp for transcription and Piper for speech synthesis, it allows developers to build agents that can hear and speak without ever sending data to the cloud. This ensures maximum privacy, zero latency from network calls, and no reliance on third-party API keys.
The skill is designed for seamless integration into agentic workflows, handling everything from raw audio conversion with ffmpeg to generating natural-sounding responses in various English accents. It is the ideal solution for developers building secure, offline-first voice assistants or productivity tools within the ecosystem of Openclaw Skills.
To use this skill with Openclaw Skills, ensure you have the required binaries installed on your system:
# Check for required binaries
which whisper piper ffmpeg
# Set model paths if not using defaults
export WHISPER_MODEL="/path/to/ggml-base.en.bin"
export VOICECLAW_VOICES_DIR="/path/to/voices/"
# Test a voice synthesis
bash scripts/speak.sh "Hello from Openclaw Skills" output.wav
VoiceClaw organizes its operations around local binary paths and model files. Data flow is typically structured as follows:
| Component | File Types | Metadata/Config |
|---|---|---|
| STT (Whisper) | ogg, mp3, m4a, wav, flac | WHISPER_BIN, WHISPER_MODEL |
| TTS (Piper) | wav, onnx | PIPER_BIN, VOICECLAW_VOICES_DIR |
| Conversion | libopus, libmp3lame | Managed via ffmpeg flags |
| Agent I/O | Plain text transcripts | Integrated into agent message history |
Loading
A universal travel planning skill that enables AI agents to generate detailed itineraries, weather forecasts, and budget estimates through natural conversation.

A performance optimization tool that reduces token usage by loading agent skills and context files only when required by the current task.

A specialized tool for transforming sterile AI-generated text into high-quality, natural-sounding, and publication-ready editorial content.

A professional-grade integration for ByteDance's SeedDance API, enabling programmatic text-to-video and image-to-video generation.

A sophisticated automation skill for publishing Markdown content directly to WordPress with full Gutenberg block support and intelligent SEO optimization.

A specialized pre-flight auditor for Reddit Devvit developers to verify app readiness and publishing compliance.








































