A high-performance local speech-to-text utility utilizing Parakeet and Whisper backends for ultra-fast, offline audio transcription.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install local-stt
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 local-stt using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Local STT is a specialized module for Openclaw Skills designed to provide fast, private, and accurate speech-to-text capabilities without relying on cloud APIs. By utilizing ONNX Runtime with int8 quantization, it ensures minimal resource usage while maintaining high fidelity. Users can toggle between Parakeet for superior English accuracy and Whisper for broad multilingual support, making it a versatile choice for any local AI agent workflow powered by Openclaw Skills.
This skill is particularly valuable for developers who prioritize data sovereignty and low-latency processing. As part of the Openclaw Skills library, it offers a unified interface for multiple STT engines, allowing for seamless backend switching depending on whether your priority is capturing nuances in English dialogue or transcribing one of 99 different languages.
To use this within your Openclaw Skills environment, ensure you have FFmpeg installed on your system. You can then configure your agent to call the script.
# Install FFmpeg (Ubuntu example)
sudo apt update && sudo apt install ffmpeg
# Run a test transcription with the default Parakeet model
~/.openclaw/skills/local-stt/scripts/local-stt.py path/to/audio.ogg
# Run using the Whisper backend for multilingual support
~/.openclaw/skills/local-stt/scripts/local-stt.py path/to/audio.ogg -b whisper
Add the tool to your openclaw.json to enable it for your AI agent:
{
"tools": {
"media": {
"audio": {
"enabled": true,
"models": [
{
"type": "cli",
"command": "~/.openclaw/skills/local-stt/scripts/local-stt.py",
"args": ["--quiet", "{{MediaPath}}"],
"timeoutSeconds": 30
}
]
}
}
}
}
The skill processes various audio formats and outputs plain text. Model selection influences the output quality and language support within the Openclaw Skills ecosystem.
| Feature | Details |
|---|---|
| Supported Backends | Parakeet (Best English accuracy), Whisper (Fastest, 99 languages) |
| Quantization | int8 (enabled by default, can be disabled with --no-int8) |
| Model Variants | Parakeet (v2, v3); Whisper (tiny, base, small, large-v3-turbo) |
| Metadata Requirements | Requires ffmpeg for audio processing |
| Output | Plain text transcription via STDOUT or Matrix API |
--room-id flag.Loading
A high-performance transcription utility that leverages Google's Gemini models to convert audio files into text with zero external dependencies.

An AI-powered hook system for Uniswap v4 that automates liquidity rebalancing and dynamic fee optimization.

An AI-powered Uniswap v4 hook system that automates liquidity provision, rebalancing, and fee optimization on Ethereum Sepolia.

A streamlined email integration for Openclaw Skills that enables sending professional text and HTML emails via the Resend API without managing SMTP servers.

A private, high-accuracy offline speech-to-text engine for the Openclaw Skills ecosystem.

A streamlined utility to transform markdown files into professional, high-quality PDF documents using reportlab.








































