# Send Elevenlabs to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "elevenlabs",
    "name": "Elevenlabs",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/odrobnik/elevenlabs",
    "canonicalUrl": "https://clawhub.ai/odrobnik/elevenlabs",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/elevenlabs",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SETUP.md",
      "SKILL.md",
      "scripts/_pathguard.py",
      "scripts/dialogs.py",
      "scripts/music.py",
      "scripts/quota.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "elevenlabs",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T20:58:40.764Z",
      "expiresAt": "2026-05-09T20:58:40.764Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs",
        "contentDisposition": "attachment; filename=\"elevenlabs-1.3.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "elevenlabs"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/elevenlabs"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/elevenlabs",
    "downloadUrl": "https://openagent3.xyz/downloads/elevenlabs",
    "agentUrl": "https://openagent3.xyz/skills/elevenlabs/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elevenlabs/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elevenlabs/agent.md"
  }
}
```
## Documentation

### ElevenLabs Skill

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

### Setup

See SETUP.md for prerequisites and setup instructions.

### Models

ModelIDUse CaseEleven v3eleven_v3⭐ Best for expressive/creative audio. Supports audio tags (square brackets): [laughs], [sighs], [whispers], [excited], [grumpy voice], [clears throat], etc. Use for storytelling, characters, demos.Multilingual v2eleven_multilingual_v2Stable multilingual. No audio tags. Good for straightforward narration.Turbo v2.5eleven_turbo_v2_5Low-latency, good for non-English (German TTS). Required for realtime/conversational.Flash v2.5eleven_flash_v2_5Fastest, lowest cost.

### v3 Audio Tags (square brackets, NOT XML/SSML)

[laughs], [chuckles], [sighs], [clears throat], [whispers], [shouts]
[excited], [sad], [angry], [warmly], [deadpan], [sarcastic]
[grumpy voice], [philosophical], [whiny voice], [resigned]
[laughs hard], [sighs deeply], [pause]

Tags can be placed anywhere in text. Combine freely. v3 understands emotional context deeply.

### Output Formats

All scripts support multiple output formats via --format:

FormatDescriptionmp3_44100_128MP3, 44.1kHz, 128kbps (default)mp3_44100_192MP3, 44.1kHz, 192kbpsmp3_44100_96MP3, 44.1kHz, 96kbpsmp3_44100_64MP3, 44.1kHz, 64kbpsmp3_44100_32MP3, 44.1kHz, 32kbpsmp3_24000_48MP3, 24kHz, 48kbpsmp3_22050_32MP3, 22.05kHz, 32kbpsopus_48000_192Opus, 48kHz, 192kbps ⭐ best for AirPlayopus_48000_128Opus, 48kHz, 128kbpsopus_48000_96Opus, 48kHz, 96kbpsopus_48000_64Opus, 48kHz, 64kbpsopus_48000_32Opus, 48kHz, 32kbpspcm_16000Raw PCM, 16kHzpcm_22050Raw PCM, 22.05kHzpcm_24000Raw PCM, 24kHzalaw_8000A-law, 8kHz (telephony)

### 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.

Security: by default this script will only read files from:

~/.openclaw/elevenlabs/voiceclone-samples/

Copy your samples there (or pass --sample-dir). Reading files outside the sample directory is blocked.

# Clone from audio files (put samples into ~/.openclaw/elevenlabs/voiceclone-samples)
python3 {baseDir}/scripts/voiceclone.py --name "MyVoice" --files sample1.mp3 sample2.mp3

# Use a custom sample dir
python3 {baseDir}/scripts/voiceclone.py --name "Andi" --sample-dir ./samples --files a.m4a b.m4a --language de --gender male

# With description and noise removal
python3 {baseDir}/scripts/voiceclone.py --name "Andi" --files a.m4a b.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: ✓)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: odrobnik
- Version: 1.3.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T20:58:40.764Z
- Expires at: 2026-05-09T20:58:40.764Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/elevenlabs)
- [Send to Agent page](https://openagent3.xyz/skills/elevenlabs/agent)
- [JSON manifest](https://openagent3.xyz/skills/elevenlabs/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/elevenlabs/agent.md)
- [Download page](https://openagent3.xyz/downloads/elevenlabs)