skills$openclaw/elevenlabs-voices
robbyczgw-cla9.2kβ˜…

by robbyczgw-cla

elevenlabs-voices – OpenClaw Skill

elevenlabs-voices is an OpenClaw Skills integration for coding workflows. High-quality voice synthesis with 18 personas, 32 languages, sound effects, batch processing, and voice design using ElevenLabs API.

9.2k stars1.7k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameelevenlabs-voices
descriptionHigh-quality voice synthesis with 18 personas, 32 languages, sound effects, batch processing, and voice design using ElevenLabs API. OpenClaw Skills integration.
ownerrobbyczgw-cla
repositoryrobbyczgw-cla/elevenlabs-voices
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @robbyczgw-cla/elevenlabs-voices
last updatedFeb 7, 2026

Maintainer

robbyczgw-cla

robbyczgw-cla

Maintains elevenlabs-voices in the OpenClaw Skills directory.

View GitHub profile
File Explorer
15 files
.
references
voice-guide.md
7.8 KB
scripts
setup.py
10.3 KB
sfx.py
9.7 KB
tts.py
6.9 KB
voice-design.py
11.6 KB
_meta.json
1.5 KB
CHANGELOG.md
109 B
examples.md
7.3 KB
package.json
652 B
pronunciations.json
1.6 KB
README.md
2.0 KB
SKILL.md
11.9 KB
voices.json
7.9 KB
SKILL.md

name: elevenlabs-voices version: 2.1.3 description: High-quality voice synthesis with 18 personas, 32 languages, sound effects, batch processing, and voice design using ElevenLabs API. tags: [tts, voice, speech, elevenlabs, audio, sound-effects, voice-design, multilingual] metadata: {"clawdbot":{"requires":{"bins":["python3"],"env":["ELEVEN_API_KEY","ELEVENLABS_API_KEY"]},"primaryEnv":"ELEVEN_API_KEY"}}

ElevenLabs Voice Personas v2.1

Comprehensive voice synthesis toolkit using ElevenLabs API.

πŸš€ First Run - Setup Wizard

When you first use this skill (no config.json exists), run the interactive setup wizard:

python3 scripts/setup.py

The wizard will guide you through:

  1. API Key - Enter your ElevenLabs API key (required)
  2. Default Voice - Choose from popular voices (Rachel, Adam, Bella, etc.)
  3. Language - Set your preferred language (32 supported)
  4. Audio Quality - Standard or high quality output
  5. Cost Tracking - Enable usage and cost monitoring
  6. Budget Limit - Optional monthly spending cap

πŸ”’ Privacy: Your API key is stored locally in config.json only. It never leaves your machine and is automatically excluded from git via .gitignore.

To reconfigure at any time, simply run the setup wizard again.


✨ Features

  • 18 Voice Personas - Carefully curated voices for different use cases
  • 32 Languages - Multi-language synthesis with the multilingual v2 model
  • Streaming Mode - Real-time audio output as it generates
  • Sound Effects (SFX) - AI-generated sound effects from text prompts
  • Batch Processing - Process multiple texts in one go
  • Cost Tracking - Monitor character usage and estimated costs
  • Voice Design - Create custom voices from descriptions
  • Pronunciation Dictionary - Custom word pronunciation rules
  • OpenClaw Integration - Works with OpenClaw's built-in TTS

πŸŽ™οΈ Available Voices

VoiceAccentGenderPersonaBest For
rachelπŸ‡ΊπŸ‡Έ USfemalewarmConversations, tutorials
adamπŸ‡ΊπŸ‡Έ USmalenarratorDocumentaries, audiobooks
bellaπŸ‡ΊπŸ‡Έ USfemaleprofessionalBusiness, presentations
brianπŸ‡ΊπŸ‡Έ USmalecomfortingMeditation, calm content
georgeπŸ‡¬πŸ‡§ UKmalestorytellerAudiobooks, storytelling
aliceπŸ‡¬πŸ‡§ UKfemaleeducatorTutorials, explanations
callumπŸ‡ΊπŸ‡Έ USmaletricksterPlayful, gaming
charlieπŸ‡¦πŸ‡Ί AUmaleenergeticSports, motivation
jessicaπŸ‡ΊπŸ‡Έ USfemaleplayfulSocial media, casual
lilyπŸ‡¬πŸ‡§ UKfemaleactressDrama, elegant content
matildaπŸ‡ΊπŸ‡Έ USfemaleprofessionalCorporate, news
riverπŸ‡ΊπŸ‡Έ USneutralneutralInclusive, informative
rogerπŸ‡ΊπŸ‡Έ USmalecasualPodcasts, relaxed
danielπŸ‡¬πŸ‡§ UKmalebroadcasterNews, announcements
ericπŸ‡ΊπŸ‡Έ USmaletrustworthyBusiness, corporate
chrisπŸ‡ΊπŸ‡Έ USmalefriendlyTutorials, approachable
willπŸ‡ΊπŸ‡Έ USmaleoptimistMotivation, uplifting
liamπŸ‡ΊπŸ‡Έ USmalesocialYouTube, social media

🎯 Quick Presets

  • default β†’ rachel (warm, friendly)
  • narrator β†’ adam (documentaries)
  • professional β†’ matilda (corporate)
  • storyteller β†’ george (audiobooks)
  • educator β†’ alice (tutorials)
  • calm β†’ brian (meditation)
  • energetic β†’ liam (social media)
  • trustworthy β†’ eric (business)
  • neutral β†’ river (inclusive)
  • british β†’ george
  • australian β†’ charlie
  • broadcaster β†’ daniel (news)

🌍 Supported Languages (32)

The multilingual v2 model supports these languages:

CodeLanguageCodeLanguage
enEnglishplPolish
deGermannlDutch
esSpanishsvSwedish
frFrenchdaDanish
itItalianfiFinnish
ptPortuguesenoNorwegian
ruRussiantrTurkish
ukUkrainiancsCzech
jaJapaneseskSlovak
koKoreanhuHungarian
zhChineseroRomanian
arArabicbgBulgarian
hiHindihrCroatian
taTamilelGreek
idIndonesianmsMalay
viVietnamesethThai
# Synthesize in German
python3 tts.py --text "Guten Tag!" --voice rachel --lang de

# Synthesize in French
python3 tts.py --text "Bonjour le monde!" --voice adam --lang fr

# List all languages
python3 tts.py --languages

πŸ’» CLI Usage

Basic Text-to-Speech

# List all voices
python3 scripts/tts.py --list

# Generate speech
python3 scripts/tts.py --text "Hello world" --voice rachel --output hello.mp3

# Use a preset
python3 scripts/tts.py --text "Breaking news..." --voice broadcaster --output news.mp3

# Multi-language
python3 scripts/tts.py --text "Bonjour!" --voice rachel --lang fr --output french.mp3

Streaming Mode

Generate audio with real-time streaming (good for long texts):

# Stream audio as it generates
python3 scripts/tts.py --text "This is a long story..." --voice adam --stream

# Streaming with custom output
python3 scripts/tts.py --text "Chapter one..." --voice george --stream --output chapter1.mp3

Batch Processing

Process multiple texts from a file:

# From newline-separated text file
python3 scripts/tts.py --batch texts.txt --voice rachel --output-dir ./audio

# From JSON file
python3 scripts/tts.py --batch batch.json --output-dir ./output

JSON batch format:

[
  {"text": "First line", "voice": "rachel", "output": "line1.mp3"},
  {"text": "Second line", "voice": "adam", "output": "line2.mp3"},
  {"text": "Third line"}
]

Simple text format (one per line):

Hello, this is the first sentence.
This is the second sentence.
And this is the third.

Usage Statistics

# Show usage stats and cost estimates
python3 scripts/tts.py --stats

# Reset statistics
python3 scripts/tts.py --reset-stats

🎡 Sound Effects (SFX)

Generate AI-powered sound effects from text descriptions:

# Generate a sound effect
python3 scripts/sfx.py --prompt "Thunder rumbling in the distance"

# With specific duration (0.5-22 seconds)
python3 scripts/sfx.py --prompt "Cat meowing" --duration 3 --output cat.mp3

# Adjust prompt influence (0.0-1.0)
python3 scripts/sfx.py --prompt "Footsteps on gravel" --influence 0.5

# Batch SFX generation
python3 scripts/sfx.py --batch sounds.json --output-dir ./sfx

# Show prompt examples
python3 scripts/sfx.py --examples

Example prompts:

  • "Thunder rumbling in the distance"
  • "Cat purring contentedly"
  • "Typing on a mechanical keyboard"
  • "Spaceship engine humming"
  • "Coffee shop background chatter"

🎨 Voice Design

Create custom voices from text descriptions:

# Basic voice design
python3 scripts/voice-design.py --gender female --age middle_aged --accent american \
  --description "A warm, motherly voice"

# With custom preview text
python3 scripts/voice-design.py --gender male --age young --accent british \
  --text "Welcome to the adventure!" --output preview.mp3

# Save to your ElevenLabs library
python3 scripts/voice-design.py --gender female --age young --accent american \
  --description "Energetic podcast host" --save "MyHost"

# List all design options
python3 scripts/voice-design.py --options

Voice Design Options:

OptionValues
Gendermale, female, neutral
Ageyoung, middle_aged, old
Accentamerican, british, african, australian, indian, latin, middle_eastern, scandinavian, eastern_european
Accent Strength0.3-2.0 (subtle to strong)

πŸ“– Pronunciation Dictionary

Customize how words are pronounced:

Edit pronunciations.json:

{
  "rules": [
    {
      "word": "OpenClaw",
      "replacement": "Open Claw",
      "comment": "Pronounce as two words"
    },
    {
      "word": "API",
      "replacement": "A P I",
      "comment": "Spell out acronym"
    }
  ]
}

Usage:

# Pronunciations are applied automatically
python3 scripts/tts.py --text "The OpenClaw API is great" --voice rachel

# Disable pronunciations
python3 scripts/tts.py --text "The API is great" --voice rachel --no-pronunciations

πŸ’° Cost Tracking

The skill tracks your character usage and estimates costs:

python3 scripts/tts.py --stats

Output:

πŸ“Š ElevenLabs Usage Statistics

  Total Characters: 15,230
  Total Requests:   42
  Since:            2024-01-15

πŸ’° Estimated Costs:
  Starter    $4.57 ($0.30/1k chars)
  Creator    $3.66 ($0.24/1k chars)
  Pro        $2.74 ($0.18/1k chars)
  Scale      $1.68 ($0.11/1k chars)

πŸ€– OpenClaw TTS Integration

Using with OpenClaw's Built-in TTS

OpenClaw has built-in TTS support that can use ElevenLabs. Configure in ~/.openclaw/openclaw.json:

{
  "tts": {
    "enabled": true,
    "provider": "elevenlabs",
    "elevenlabs": {
      "apiKey": "your-api-key-here",
      "voice": "rachel",
      "model": "eleven_multilingual_v2"
    }
  }
}

Triggering TTS in Chat

In OpenClaw conversations:

  • Use /tts on to enable automatic TTS
  • Use the tts tool directly for one-off speech
  • Request "read this aloud" or "speak this"

Using Skill Scripts from OpenClaw

# OpenClaw can run these scripts directly
exec python3 /path/to/skills/elevenlabs-voices/scripts/tts.py --text "Hello" --voice rachel

βš™οΈ Configuration

The scripts look for API key in this order:

  1. ELEVEN_API_KEY or ELEVENLABS_API_KEY environment variable
  2. OpenClaw config (~/.openclaw/openclaw.json β†’ tts.elevenlabs.apiKey)
  3. Skill-local .env file

Create .env file:

echo 'ELEVEN_API_KEY=your-key-here' > .env

πŸŽ›οΈ Voice Settings

Each voice has tuned settings for optimal output:

SettingRangeDescription
stability0.0-1.0Higher = consistent, lower = expressive
similarity_boost0.0-1.0How closely to match original voice
style0.0-1.0Exaggeration of speaking style

πŸ“ Triggers

  • "use {voice_name} voice"
  • "speak as {persona}"
  • "list voices"
  • "voice settings"
  • "generate sound effect"
  • "design a voice"

elevenlabs-voices/
β”œβ”€β”€ SKILL.md              # This documentation
β”œβ”€β”€ README.md             # Quick start guide
β”œβ”€β”€ config.json           # Your local config (created by setup, in .gitignore)
β”œβ”€β”€ voices.json           # Voice definitions & settings
β”œβ”€β”€ pronunciations.json   # Custom pronunciation rules
β”œβ”€β”€ examples.md           # Detailed usage examples
β”œβ”€β”€ scripts/
β”‚   β”œβ”€β”€ setup.py          # Interactive setup wizard
β”‚   β”œβ”€β”€ tts.py            # Main TTS script
β”‚   β”œβ”€β”€ sfx.py            # Sound effects generator
β”‚   └── voice-design.py   # Voice design tool
└── references/
    └── voice-guide.md    # Voice selection guide

πŸ”— Links


πŸ“‹ Changelog

v2.1.0

  • Added interactive setup wizard (scripts/setup.py)
  • Onboarding guides through API key, voice, language, quality, and budget settings
  • Config stored locally in config.json (added to .gitignore)
  • Professional, privacy-focused setup experience

v2.0.0

  • Added 32 language support with --lang parameter
  • Added streaming mode with --stream flag
  • Added sound effects generation (sfx.py)
  • Added batch processing with --batch flag
  • Added cost tracking with --stats flag
  • Added voice design tool (voice-design.py)
  • Added pronunciation dictionary support
  • Added OpenClaw TTS integration documentation
  • Improved error handling and progress output
README.md

ElevenLabs Voice Personas - Published! βœ…

Successfully published to ClawdHub as elevenlabs-voices@1.0.0

Installation

clawdhub install elevenlabs-voices

What's Included

Voice Personas (14 total)

English Voices (8)
  • Rachel - Warm American female (default)
  • Adam - Deep narrator male
  • Bella - Soft young female
  • Antoni - Conversational male
  • Josh - Professional male
  • Domi - Confident female
  • Elli - Energetic female
  • Callum - Trustworthy British male
German Voices (3)
  • Seraphina - Professional female
  • Daniel - Authoritative male
  • Clara - Warm female
Spanish Voices (2)
  • Valentino - Smooth male
  • Lucia - Elegant female

Files Structure

elevenlabs-voices/
β”œβ”€β”€ SKILL.md              # Main skill documentation
β”œβ”€β”€ voices.json           # Voice presets with ElevenLabs IDs
β”œβ”€β”€ references/
β”‚   └── voice-guide.md    # Detailed voice descriptions
β”œβ”€β”€ examples.md           # Usage examples
└── README.md            # This file

Quick Start

const voices = require('./voices.json');

// Get Rachel voice (default)
const rachel = voices.voices.rachel;
console.log(rachel.voice_id); // 21m00Tcm4TlvDq8ikWAM

// Use narrator preset
const narrator = voices.voices[voices.presets.narrator];
console.log(narrator.name); // Adam

Features

βœ… 14 professionally-selected voice personas
βœ… Multi-language support (EN, DE, ES)
βœ… Voice settings (stability, similarity_boost, style)
βœ… Persona-based presets
βœ… Detailed voice guide with use cases
βœ… Comprehensive usage examples

ClawdHub Info

  • Slug: elevenlabs-voices
  • Version: 1.0.0
  • ID: k97cgqqkq4xtd7h62hngzpensx7zxdww
  • Published: βœ… Success

Next Steps

  1. Install the skill: clawdhub install elevenlabs-voices
  2. Read SKILL.md for trigger instructions
  3. Check voice-guide.md for detailed voice descriptions
  4. See examples.md for usage patterns

Enjoy! πŸŽ™οΈ

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

The scripts look for API key in this order: 1. `ELEVEN_API_KEY` or `ELEVENLABS_API_KEY` environment variable 2. OpenClaw config (`~/.openclaw/openclaw.json` β†’ tts.elevenlabs.apiKey) 3. Skill-local `.env` file **Create .env file:** ```bash echo 'ELEVEN_API_KEY=your-key-here' > .env ``` ---

FAQ

How do I install elevenlabs-voices?

Run openclaw add @robbyczgw-cla/elevenlabs-voices in your terminal. This installs elevenlabs-voices into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/robbyczgw-cla/elevenlabs-voices. Review commits and README documentation before installing.