with one click
sherpa-onnx-tts
Local text-to-speech via sherpa-onnx (offline, no cloud)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Local text-to-speech via sherpa-onnx (offline, no cloud)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Build or update the BlueBubbles iMessage channel plugin for Moltbot, including REST send/probe endpoints, webhook inbound handling, reactions, typing indicators, and attachment downloads. Use when working on BlueBubbles integration, iMessage channel support, the extensions/bluebubbles/ directory, or any webhook, send, or probe logic for the BlueBubbles plugin.
Search the web using DuckDuckGo Instant Answer API via a local shell script. Returns abstracts, redirect URLs, or related topics for a query. Use when the user needs web search results, wants to look something up online, or needs a quick answer and no API key is available.
Send emails, manage calendar events, search Google Drive, read and update Sheets, and export Docs using the gog CLI. Use when the user needs to interact with Gmail, Google Calendar, Drive, Contacts, Sheets, or Docs from the command line, or mentions sending email, scheduling events, reading spreadsheets, or the gog CLI.
Create, search, move, and delete notes in Obsidian vaults using obsidian-cli. Manages vault discovery, note refactoring with automatic wikilink updates, and content search. Use when the user asks about Obsidian, note management, vault operations, .md notes in a vault, wikilinks, or mentions obsidian-cli.
Capture screenshots, automate UI interactions, and manage macOS apps and windows using the Peekaboo CLI. Drives clicks, keystrokes, mouse gestures, menus, and Dock items by element ID or coordinates. Use when the user needs to take screenshots, click UI elements, type text, automate mouse or keyboard input, inspect screens, control application windows, or interact with macOS system UI.
A professional-grade network diagnostic tool that monitors connection stability and automatically repairs broken tunnels using self-healing background tasks.
| name | sherpa-onnx-tts |
| description | Local text-to-speech via sherpa-onnx (offline, no cloud) |
| metadata | {"moltbot":{"emoji":"🗣️","os":["darwin","linux","win32"],"requires":{"env":["SHERPA_ONNX_RUNTIME_DIR","SHERPA_ONNX_MODEL_DIR"]},"install":[{"id":"download-runtime-macos","kind":"download","os":["darwin"],"url":"https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.23/sherpa-onnx-v1.12.23-osx-universal2-shared.tar.bz2","archive":"tar.bz2","extract":true,"stripComponents":1,"targetDir":"~/.clawdbot/tools/sherpa-onnx-tts/runtime","label":"Download sherpa-onnx runtime (macOS)"},{"id":"download-runtime-linux-x64","kind":"download","os":["linux"],"url":"https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.23/sherpa-onnx-v1.12.23-linux-x64-shared.tar.bz2","archive":"tar.bz2","extract":true,"stripComponents":1,"targetDir":"~/.clawdbot/tools/sherpa-onnx-tts/runtime","label":"Download sherpa-onnx runtime (Linux x64)"},{"id":"download-runtime-win-x64","kind":"download","os":["win32"],"url":"https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.23/sherpa-onnx-v1.12.23-win-x64-shared.tar.bz2","archive":"tar.bz2","extract":true,"stripComponents":1,"targetDir":"~/.clawdbot/tools/sherpa-onnx-tts/runtime","label":"Download sherpa-onnx runtime (Windows x64)"},{"id":"download-model-lessac","kind":"download","url":"https://github.com/k2-fsa/sherpa-onnx/releases/download/tts-models/vits-piper-en_US-lessac-high.tar.bz2","archive":"tar.bz2","extract":true,"targetDir":"~/.clawdbot/tools/sherpa-onnx-tts/models","label":"Download Piper en_US lessac (high)"}]}} |
Local TTS using the sherpa-onnx offline CLI.
~/.clawdbot/tools/sherpa-onnx-tts/runtime)~/.clawdbot/tools/sherpa-onnx-tts/models)Update ~/.clawdbot/moltbot.json:
{
skills: {
entries: {
"sherpa-onnx-tts": {
env: {
SHERPA_ONNX_RUNTIME_DIR: "~/.clawdbot/tools/sherpa-onnx-tts/runtime",
SHERPA_ONNX_MODEL_DIR: "~/.clawdbot/tools/sherpa-onnx-tts/models/vits-piper-en_US-lessac-high"
}
}
}
}
}
The wrapper lives in this skill folder. Run it directly, or add the wrapper to PATH:
export PATH="{baseDir}/bin:$PATH"
{baseDir}/bin/sherpa-onnx-tts -o ./tts.wav "Hello from local TTS."
Notes:
tts-models release if you want another voice..onnx files, set SHERPA_ONNX_MODEL_FILE or pass --model-file.--tokens-file or --data-dir to override the defaults.node {baseDir}\\bin\\sherpa-onnx-tts -o tts.wav "Hello from local TTS."