Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

elevenlabs-toolkit十一实验室工具包

Agent Skill

elevenlabs-toolkit 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

18,466

周安装

747

GitHub Stars

公开资料未说明

下载量

5,797
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:elevenlabs-toolkit(十一实验室工具包)
来源仓库:https://github.com/nissan/elevenlabs-toolkit
安装命令:
openclaw skills install elevenlabs-toolkit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install elevenlabs-toolkit

简介

elevenlabs-toolkit 封装 ElevenLabs 语音 API 实现 TTS、音效与流媒体集成。

  • 适用于开发带语音功能的应用如客服系统与教育软件。
  • 同时支持语音隔离与多轨混音处理。elevenlabs-toolkit 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 需按文档初始化 SDK 并处理异步回调逻辑。
  • 免费版有调用次数限制,商用请升级至付费套餐。

SKILL.md

name
elevenlabs-toolkit
description
ElevenLabs voice API integration — TTS, sound effects, music generation, speech-to-text, voice isolation, and streaming. Use when building voice-enabled apps, generating narration, creating audio content, or transcribing speech. Requires ELEVENLABS_API_KEY.
version
1.0.2
metadata

ElevenLabs Toolkit

Programmatic access to all 7 ElevenLabs API capabilities via FastAPI endpoints or standalone Python functions.


When to Use This / When NOT to Use This

Use ElevenLabs when:

  • Generating high-quality narration audio for videos, demos, or content (especially with Rachel or a consistent character voice)
  • Building a voice-enabled app that needs streamed speech in real-time
  • Transcribing audio files (STT/Scribe)
  • Generating ambient sound effects or background music from text descriptions
  • Isolating clean voice from a noisy recording

Do NOT use ElevenLabs when:

  • You need fast/cheap TTS with no quality bar — use local TTS instead (see below)
  • You're offline or the API key isn't available
  • You're generating large volumes of test audio and don't want to burn character quota

ElevenLabs vs Local TTS (kokoro / chatterbox)

CriteriaElevenLabsLocal TTS (kokoro/chatterbox)
Voice quality★★★★★ — natural, expressive★★★ — good but robotic edges
CostChars deducted from monthly quotaFree, unlimited
Latency~300–800ms API round-trip~50–200ms local inference
Voice consistencyNamed voices (Rachel etc.) persistModel-dependent
Offline use❌ Requires internet + API key✅ Fully local
Best forFinal narration, published contentDrafts, testing, high-volume batch

Rule of thumb: Use ElevenLabs for anything that will be seen/heard by a user. Use local TTS for drafts, tests, and volume work.


Capabilities

ToolEndpointWhat It Does
VoicesGET /api/voicesBrowse available voices with metadata
TTSPOST /api/voice/ttsBatch text-to-speech (any voice, any language)
TTS StreamWS /api/voice/streamReal-time WebSocket TTS streaming
Sound EffectsPOST /api/voice/sfxGenerate ambient audio from text prompts
MusicPOST /api/voice/musicGenerate background music from descriptions
STT (Scribe)POST /api/voice/sttTranscribe audio with language detection
Voice IsolationPOST /api/voice/isolateExtract clean voice from noisy audio

Known Voice IDs

These are confirmed voices used in OpenClaw workflows. Always prefer these over browsing the full list:

VoiceVoice IDBest For
Rachel21m00Tcm4TlvDq8ikWAMDefault narration — clear, warm, American English
AdampNInz6obpgDQGcFmaJgBMale narration, authoritative tone
DomiAZnzlk1XvdvUeBnXmlldEnergetic, conversational
BellaEXAVITQu4vr4xnSDxMaLSoft, gentle narration
Default for all narration tasks: Use Rachel (21m00Tcm4TlvDq8ikWAM) unless explicitly specified otherwise.

To get the full current list from the API:

curl -s -H "xi-api-key: $ELEVENLABS_API_KEY" https://api.elevenlabs.io/v1/voices | python3 -m json.tool

Quick Start

import httpx

BASE = "http://localhost:8000"  # Your FastAPI app
KEY = os.environ["ELEVENLABS_API_KEY"]

# Get voices
voices = httpx.get(f"{BASE}/api/voices").json()

# Generate speech
audio = httpx.post(f"{BASE}/api/voice/tts", json={
    "text": "Hello world",
    "voice_id": voices[0]["voice_id"],
    "model_id": "eleven_multilingual_v2"
}).content  # Returns raw audio bytes

# Generate sound effects
sfx = httpx.post(f"{BASE}/api/voice/sfx", json={
    "prompt": "ocean waves on a quiet beach at night"
}).content

Audio Output Format

TTS and SFX endpoints return raw audio bytes (not base64, not JSON).

# Correct: .content gives you bytes
audio_bytes = response.content  # type: bytes

# Save to file
with open("output.mp3", "wb") as f:
    f.write(audio_bytes)

# The file format is MP3 by default
# File size estimate: ~1 MB per minute of speech at standard quality

What you get back from each endpoint:

EndpointResponse typeHow to handle
POST /api/voice/ttsbytes (MP3)Write directly to .mp3 file
POST /api/voice/sfxbytes (MP3)Write directly to .mp3 file
POST /api/voice/musicbytes (MP3)Write directly to .mp3 file
POST /api/voice/sttJSON{"text": "transcription...", "language": "en"}
POST /api/voice/isolatebytes (MP3)Write directly to .mp3 file
GET /api/voicesJSONList of {voice_id, name, labels, ...}

Voice Selection Guide

  • English only: Use eleven_turbo_v2_5 — faster, no accent bleed
  • Multilingual: Use eleven_multilingual_v2 — supports 29 languages
  • Accent warning: Multilingual model can bleed accents across languages. If an English voice sounds Japanese, switch to turbo.

Quota Management

ElevenLabs charges per character for TTS. Key patterns:

  • Cache aggressively — identical text + voice = identical audio
  • Use prompt-cache skill for SHA-256 dedup before calling TTS
  • A 6-scene children's story ≈ 2,000 characters
  • Free tier: 10k chars/month. Starter: 30k. Creator: 100k.

Integration

Copy scripts/elevenlabs_api.py into your FastAPI app and mount the router:

from elevenlabs_api import router
app.include_router(router)

Set ELEVENLABS_API_KEY in your environment. All endpoints handle errors gracefully with proper HTTP status codes.


What If the FastAPI Server Isn't Running?

The Quick Start examples assume http://localhost:8000 is live. If it's not:

# Check if server is up before calling
import httpx

try:
    httpx.get("http://localhost:8000/health", timeout=2.0)
except httpx.ConnectError:
    # Server is not running — start it first
    import subprocess
    subprocess.Popen(["uvicorn", "elevenlabs_api:app", "--port", "8000"])
    import time; time.sleep(2)  # Give it a moment to bind

Or call the ElevenLabs API directly without the FastAPI wrapper — the scripts/elevenlabs_api.py functions are importable standalone:

from elevenlabs_api import generate_tts  # if the module exposes standalone functions

Error Handling: API Key and Rate Limits

Missing API key:

httpx.HTTPStatusError: 401 Unauthorized
{"detail": {"status": "unauthorized", "message": "Invalid API key"}}

→ Check ELEVENLABS_API_KEY is set: echo $ELEVENLABS_API_KEY → Retrieve from 1Password: op read "op://OpenClaw/ElevenLabs API Credentials/credential"

Rate limited (429):

{"detail": {"status": "too_many_requests", "message": "Too many requests"}}

→ Wait and retry with exponential backoff. ElevenLabs rate limits are per-minute on the free/starter tiers. → On Creator tier and above, limits are much higher — check your tier in the ElevenLabs dashboard.

Quota exhausted:

{"detail": {"status": "quota_exceeded", "message": "Quota exceeded"}}

→ Character quota for the month is used up. Either wait for monthly reset or upgrade tier. → Check current usage: curl -s -H "xi-api-key: $KEY" https://api.elevenlabs.io/v1/user/subscription


Files

  • scripts/elevenlabs_api.py — FastAPI router with all 7 endpoints

Common Mistakes

  1. Treating the response as JSON when it's bytes

- ❌ response.json() on a TTS call → JSONDecodeError - ✅ response.content → raw bytes, then write to .mp3

  1. Using the wrong voice ID

- ElevenLabs voice IDs are opaque strings, not names - ❌ "voice_id": "Rachel" → 404 or wrong voice - ✅ "voice_id": "21m00Tcm4TlvDq8ikWAM" (Rachel's actual ID)

  1. Calling TTS for large batches without caching

- Identical text+voice always produces identical audio — don't re-generate what's already cached - Burns character quota unnecessarily

  1. Using multilingual model for English-only content

- eleven_multilingual_v2 is slower and can produce accent artifacts on English-only text - Use eleven_turbo_v2_5 for English-only work

  1. Not checking the FastAPI server is running before calling

- httpx.ConnectError is confusing if you forget the local server dependency - Add a health check or start-server step before calling endpoints


Security Notes

This skill uses patterns that may trigger automated security scanners:

  • base64: Used for encoding audio/binary data in API responses (standard practice for media APIs)
  • UploadFile: FastAPI's built-in file upload parameter for STT/voice isolation endpoints
  • "system prompt": Refers to configuring agent instructions, not prompt injection

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.2%
按下载量换算5,635

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills