โ† All skills
Tencent SkillHub ยท Developer Tools

Voice.ai Voices

High-quality voice synthesis with 9 personas, 11 languages, and streaming using Voice.ai API.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

High-quality voice synthesis with 9 personas, 11 languages, and streaming using Voice.ai API.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, LICENSE.md, README.md, SECURITY.md, SKILL.md, package.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.5

Documentation

ClawHub primary doc Primary doc: SKILL.md 26 sections Open source page

โœจ Features

9 Voice Personas - Carefully curated voices for different use cases 11 Languages - Multi-language synthesis with multilingual model Streaming Mode - Real-time audio output as it generates Voice Design - Customize with temperature and top_p parameters OpenClaw Integration - Works with OpenClaw's built-in TTS

โš™๏ธ Configuration

Set your API key as an environment variable: export VOICE_AI_API_KEY="your-api-key" Get your API key: Voice.ai Dashboard

๐Ÿ“ฆ Installation

No install step is required. This skill bundles a Node.js CLI and SDK (no external npm dependencies).

๐Ÿงฉ Key Files

scripts/tts.js - CLI entrypoint voice-ai-tts-sdk.js - Node.js SDK used by the CLI voices.json - Voice definitions used by the CLI voice-ai-tts.yaml - API specification package.json - Skill metadata for tooling

Security Notes

See SECURITY.md for the full security and privacy overview. This skill: Makes outbound HTTPS requests only to https://dev.voice.ai Reads local files: voices.json Writes audio output to the --output path (default output.mp3) Does not execute shell commands and does not modify system configuration files

๐ŸŒ API Endpoint

The SDK and spec use https://dev.voice.ai, which is the official Voice.ai production API domain.

๐Ÿค– OpenClaw Integration

OpenClaw can invoke the CLI script directly if your environment exposes VOICE_AI_API_KEY. Use the /tts commands as configured by your OpenClaw installation.

๐Ÿ“ Triggers

These chat commands work with OpenClaw: CommandDescription/tts <text>Generate speech with default voice/tts --voice ellie <text>Generate speech with specific voice/tts --stream <text>Generate with streaming mode/voicesList available voices Examples: /tts Hello, welcome to Voice.ai! /tts --voice oliver Good morning, everyone. /tts --voice lilith --stream This is a long story that will stream as it generates...

๐ŸŽ™๏ธ Available Voices

VoiceIDGenderPersonaBest Forellied1bf0f33-8e0e-4fbf-acf8-45c3c6262513femaleyouthfulVlogs, social contentoliverf9e6a5eb-a7fd-4525-9e92-75125249c933malebritishNarration, tutorialslilith4388040c-8812-42f4-a264-f457a6b2b5b9femalesoftASMR, calm contentsmoothdbb271df-db25-4225-abb0-5200ba1426bcmaledeepDocumentaries, audiobooksshadow72d2a864-b236-402e-a166-a838ccc2c273maledistinctiveGaming, entertainmentsakura559d3b72-3e79-4f11-9b62-9ec702a6c057femaleanimeCharacter voiceszenithed751d4d-e633-4bb0-8f5e-b5c8ddb04402maledeepGaming, dramatic contentfloraa931a6af-fb01-42f0-a8c0-bd14bc302bb1femalecheerfulKids content, upbeatcommanderbd35e4e6-6283-46b9-86b6-7cfa3dd409b9maleheroicGaming, action content

๐ŸŒ Supported Languages

CodeLanguageenEnglishesSpanishfrFrenchdeGermanitItalianptPortugueseplPolishruRussiannlDutchsvSwedishcaCatalan Use the multilingual model for non-English languages: const audio = await client.generateSpeech({ text: 'Bonjour le monde!', voice_id: 'ellie-voice-id', model: 'voiceai-tts-multilingual-v1-latest', language: 'fr' });

๐ŸŽจ Voice Design

Customize voice output with these parameters: ParameterRangeDefaultDescriptiontemperature0-21.0Higher = more expressive, lower = more consistenttop_p0-10.8Controls randomness in speech generation Example: const audio = await client.generateSpeech({ text: 'This will sound very expressive!', voice_id: 'ellie-voice-id', temperature: 1.8, top_p: 0.9 });

๐Ÿ“ก Streaming Mode

Generate audio with real-time streaming (recommended for long texts): # Stream audio as it generates node scripts/tts.js --text "This is a long story..." --voice ellie --stream # Streaming with custom output node scripts/tts.js --text "Chapter one..." --voice oliver --stream --output chapter1.mp3 SDK streaming: const stream = await client.streamSpeech({ text: 'Long text here...', voice_id: 'ellie-voice-id' }); // Pipe to file stream.pipe(fs.createWriteStream('output.mp3')); // Or handle chunks stream.on('data', chunk => { // Process audio chunk });

๐Ÿ”Š Audio Formats

FormatDescriptionUse Casemp3Standard MP3 (32kHz)General usewavUncompressed WAVHigh qualitypcmRaw PCM audioProcessingopus_48000_128Opus 128kbpsStreamingmp3_44100_192High-quality MP3Professional See voice-ai-tts-sdk.js for all format options.

๐Ÿ’ป CLI Usage

# Set API key export VOICE_AI_API_KEY="your-key-here" # Generate speech node scripts/tts.js --text "Hello world!" --voice ellie # Choose different voice node scripts/tts.js --text "Good morning!" --voice oliver --output morning.mp3 # Use streaming for long texts node scripts/tts.js --text "Once upon a time..." --voice lilith --stream # Show help node scripts/tts.js --help

๐Ÿ“ Files

voice-ai-tts/ โ”œโ”€โ”€ SKILL.md # This documentation โ”œโ”€โ”€ README.md # Quick start โ”œโ”€โ”€ CHANGELOG.md # Version history โ”œโ”€โ”€ LICENSE.md # MIT license โ”œโ”€โ”€ SECURITY.md # Security & privacy notes โ”œโ”€โ”€ voices.json # Voice definitions โ”œโ”€โ”€ voice-ai-tts.yaml # OpenAPI specification โ”œโ”€โ”€ voice-ai-tts-sdk.js # JavaScript/Node.js SDK โ”œโ”€โ”€ package.json # OpenClaw metadata โ”œโ”€โ”€ scripts/ โ”‚ โ””โ”€โ”€ tts.js # CLI tool

๐Ÿ’ฐ Cost & Usage

Voice.ai uses a credit-based system. Check your usage: // The SDK tracks usage via API responses const voices = await client.listVoices(); // Check response headers for rate limit info Tips to reduce costs: Use streaming for long texts (more efficient) Cache generated audio when possible Use appropriate audio quality for your use case

๐Ÿ”— Links

Get API Key - Sign up and get your key API Documentation - Full API reference Voice Library - Browse all voices API Reference - Endpoint details Pricing - Plans and credits

v1.1.5 (2026-02-16)

Declare runtime requirements via metadata.clawdbot so ClawHub shows required env vars

v1.1.4 (2026-02-16)

Declare VOICE_AI_API_KEY as primary env var in metadata

v1.1.3 (2026-02-16)

Remove voice-sample upload features from the published bundle to reduce privacy risk Require VOICE_AI_API_KEY via environment variable only

v1.1.2 (2026-02-16)

Added SECURITY.md and LICENSE.md for provenance and transparency Restricted SDK transport to HTTPS only

v1.1.1 (2026-02-16)

Packaging metadata improvements for ClawHub import (bin/files metadata)

v1.1.0 (2026-02-16)

Declared required credentials in metadata Documented the production API endpoint domain Renamed voice personas for IP-safe labeling Added voices.json for voice data

v1.0.0 (2025-01-31)

Initial release 9 curated voice personas 11 language support Streaming mode Voice design parameters Full SDK with error handling CLI tool

๐Ÿ› ๏ธ SDK Quick Reference

const VoiceAI = require('./voice-ai-tts-sdk'); const client = new VoiceAI(process.env.VOICE_AI_API_KEY); // List voices const voices = await client.listVoices({ limit: 10 }); // Get voice details const voice = await client.getVoice('voice-id'); // Generate speech const audio = await client.generateSpeech({ text: 'Hello, world!', voice_id: 'voice-id', audio_format: 'mp3' }); // Generate to file await client.generateSpeechToFile( { text: 'Hello!', voice_id: 'voice-id' }, 'output.mp3' ); // Stream speech const stream = await client.streamSpeech({ text: 'Long text...', voice_id: 'voice-id' }); // Delete voice await client.deleteVoice('voice-id');

โ“ Troubleshooting

ErrorCauseSolutionAuthenticationErrorInvalid API keyCheck your VOICE_AI_API_KEYPaymentRequiredErrorOut of creditsAdd credits at voice.ai/dashboardRateLimitErrorToo many requestsWait and retry, or upgrade planValidationErrorInvalid parametersCheck text length and voice_id Made with โค๏ธ by Nick Gill

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Config
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • LICENSE.md Docs
  • README.md Docs
  • SECURITY.md Docs
  • package.json Config