skills$openclaw/elevenlabs
odrobnik9.0k

by odrobnik

elevenlabs – OpenClaw Skill

elevenlabs is an OpenClaw Skills integration for coding workflows. Text-to-speech, sound effects, music generation, voice management, and quota checks via the ElevenLabs API. Use when generating audio with ElevenLabs or managing voices.

9.0k stars8.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameelevenlabs
descriptionText-to-speech, sound effects, music generation, voice management, and quota checks via the ElevenLabs API. Use when generating audio with ElevenLabs or managing voices. OpenClaw Skills integration.
ownerodrobnik
repositoryodrobnik/elevenlabs
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @odrobnik/elevenlabs
last updatedFeb 7, 2026

Maintainer

odrobnik

odrobnik

Maintains elevenlabs in the OpenClaw Skills directory.

View GitHub profile
File Explorer
10 files
.
scripts
dialogs.py
10.2 KB
music.py
4.7 KB
quota.py
9.4 KB
sfx.py
5.1 KB
speech.py
4.2 KB
voiceclone.py
6.3 KB
voices.py
1.6 KB
_meta.json
274 B
SKILL.md
4.1 KB
SKILL.md

name: elevenlabs description: Text-to-speech, sound effects, music generation, voice management, and quota checks via the ElevenLabs API. Use when generating audio with ElevenLabs or managing voices. version: 1.1.0 homepage: https://github.com/odrobnik/elevenlabs-skill metadata: { "openclaw": { "emoji": "🔊", "requires": { "bins": ["python3"], "env": ["ELEVENLABS_API_KEY"] }, "primaryEnv": "ELEVENLABS_API_KEY", }, }

ElevenLabs Skill

Core tools for interacting with the ElevenLabs API for sound generation, music, and voice management.

Setup

Requires ELEVENLABS_API_KEY in environment.

Output Formats

All scripts support multiple output formats via --format:

FormatDescription
mp3_44100_128MP3, 44.1kHz, 128kbps (default)
mp3_44100_192MP3, 44.1kHz, 192kbps
mp3_44100_96MP3, 44.1kHz, 96kbps
mp3_44100_64MP3, 44.1kHz, 64kbps
mp3_44100_32MP3, 44.1kHz, 32kbps
mp3_24000_48MP3, 24kHz, 48kbps
mp3_22050_32MP3, 22.05kHz, 32kbps
opus_48000_192Opus, 48kHz, 192kbps ⭐ best for AirPlay
opus_48000_128Opus, 48kHz, 128kbps
opus_48000_96Opus, 48kHz, 96kbps
opus_48000_64Opus, 48kHz, 64kbps
opus_48000_32Opus, 48kHz, 32kbps
pcm_16000Raw PCM, 16kHz
pcm_22050Raw PCM, 22.05kHz
pcm_24000Raw PCM, 24kHz
alaw_8000A-law, 8kHz (telephony)

Tools

1. Speech (speech.py)

Text-to-speech using ElevenLabs voices.

# Basic usage
python3 {baseDir}/scripts/speech.py "Hello world" -v <voice_id> -o output.mp3

# With format option
python3 {baseDir}/scripts/speech.py "Hello world" -v <voice_id> -o output.pcm --format pcm_44100

# With voice settings
python3 {baseDir}/scripts/speech.py "Hello" -v <voice_id> -o out.mp3 --stability 0.7 --similarity 0.8

2. Sound Effects (sfx.py)

Generate sound effects and short audio clips.

# Generate a sound
python3 {baseDir}/scripts/sfx.py "Cinematic boom" -o boom.mp3

# Generate a loop
python3 {baseDir}/scripts/sfx.py "Lo-fi hip hop beat" --duration 10 --loop -o beat.mp3

# Different format
python3 {baseDir}/scripts/sfx.py "Whoosh" -o whoosh.pcm --format pcm_44100

3. Music Generation (music.py)

Generate full musical compositions or instrumental tracks.

# Generate instrumental intro
python3 {baseDir}/scripts/music.py --prompt "Upbeat 6s news intro sting, instrumental" --length-ms 6000 -o intro.mp3

# Generate background bed
python3 {baseDir}/scripts/music.py --prompt "Soft ambient synth pad" --length-ms 30000 -o bed.mp3

# High quality MP3
python3 {baseDir}/scripts/music.py --prompt "Jazz piano" --length-ms 10000 -o jazz.mp3 --output-format mp3_44100_192

4. Voices (voices.py)

List available voices and their IDs.

# List voices
python3 {baseDir}/scripts/voices.py

# JSON output
python3 {baseDir}/scripts/voices.py --json

5. Voice Cloning (voiceclone.py)

Create instant voice clones from audio samples.

# Clone from audio files
python3 {baseDir}/scripts/voiceclone.py --name "MyVoice" --files sample1.mp3 sample2.mp3

# With language and gender labels
python3 {baseDir}/scripts/voiceclone.py --name "Andi" --files *.m4a --language de --gender male

# With description and noise removal
python3 {baseDir}/scripts/voiceclone.py --name "Andi" --files *.m4a --description "German male" --denoise

6. Quota & Usage (quota.py)

Check subscription quota and usage statistics.

# Show current quota
python3 {baseDir}/scripts/quota.py

# Include usage breakdown by voice
python3 {baseDir}/scripts/quota.py --usage

# Last 7 days usage
python3 {baseDir}/scripts/quota.py --usage --days 7

# JSON output
python3 {baseDir}/scripts/quota.py --json

Output:

📊 ElevenLabs Quota
=======================================
Plan:      pro (active) — annual
Characters: 66.6K / 500.0K (13.3%)
           [███░░░░░░░░░░░░░░░░░░░░░░░░░░░]
Resets:    2026-02-18 (29 days)
Voices:    22 / 160 (IVC: ✓)
Pro Voice: 0 / 1 (PVC: ✓)
README.md

No README available.

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:

FAQ

How do I install elevenlabs?

Run openclaw add @odrobnik/elevenlabs in your terminal. This installs elevenlabs 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/odrobnik/elevenlabs. Review commits and README documentation before installing.