← 返回
未分类 中文

ElevenLabs

Create and manage voices, speech synthesis, audio projects, and conversational AI agents in ElevenLabs via the ElevenLabs API. Use this skill when users want...
通过ElevenLabs API创建和管理语音、语音合成、音频项目及对话式AI代理。当用户想要...
hith3sh hith3sh 来源
未分类 clawhub v1.0.6 2 版本 99874.5 Key: 无需
★ 5
Stars
📥 1,491
下载
💾 1
安装
2
版本
#latest

概述

ElevenLabs

!ElevenLabs

Access ElevenLabs via the ElevenLabs API with managed API key authentication. Manage voices, speech assets, audio projects, and voice workflow tasks from chat.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure ElevenLabs API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect ElevenLabs
:---::---::---:
!Install!PairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect ElevenLabs

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│   ElevenLabs     │
│   (User Chat)   │     │   (API Key)  │     │      API          │
└─────────────────┘     └──────────────┘     └──────────────────┘
          │                       │                       │
          │  1. Install Plugin    │                       │
          │  2. Pair Device       │                       │
          │  3. Connect ElevenLabs│                       │
          │                       │  4. Secure Proxy       │
          │                       │  5. API Requests        │
          │                       │                       │
          ▼                       ▼                       ▼
    ┌──────────┐           ┌──────────┐           ┌──────────┐
    │  SKILL   │           │ Dashboard│           │ ElevenLabs│
    │  File    │           │ Auth     │           │  Studio  │
    └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for ElevenLabs again."

Quick Start

# List integrations
clawlink_list_integrations

# List ElevenLabs tools
clawlink_list_tools --integration elevenlabs

# Search for a specific tool
clawlink_search_tools --query "voice" --integration elevenlabs

Authentication

All ElevenLabs tool calls are authenticated automatically by ClawLink using the user's connected ElevenLabs API credentials.

No API key is required in chat. ClawLink stores the API key securely and injects it into every ElevenLabs API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=elevenlabs and connect ElevenLabs.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for elevenlabs in the list.

Verify Connection

clawlink_list_tools --integration elevenlabs

Response: Returns the live tool catalog for ElevenLabs.

Reconnect

If ElevenLabs tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=elevenlabs
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration elevenlabs

Discovery Workflow

  1. Call clawlink_list_integrations to confirm ElevenLabs is connected.
  2. Call clawlink_list_tools --integration elevenlabs to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration elevenlabs.
  5. If no ElevenLabs tools appear, direct the user to https://claw-link.dev/dashboard?add=elevenlabs.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → search → describe → call                      │
│                                                             │
│  Example: List voices → Get details → Show results         │
└─────────────────────────────────────────────────────────────┘
                               │
                               ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  list → get → describe → preview → confirm → call           │
│                                                             │
│  Example: Describe tool → Preview changes → User approves   │
│           → Execute update                                  │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Tool Reference

Voices

ToolDescriptionMode
-------------------------
elevenlabs_list_voicesList all voices in the accountRead
elevenlabs_get_voiceGet voice detailsRead
elevenlabs_add_voiceAdd a custom voice by uploading audioWrite
elevenlabs_edit_voiceUpdate voice name, audio, or settingsWrite
elevenlabs_delete_voiceDelete a custom voiceWrite
elevenlabs_get_audio_from_sampleGet audio from a voice sampleRead

Text-to-Speech

ToolDescriptionMode
-------------------------
elevenlabs_text_to_speechConvert text to speech audioWrite
elevenlabs_download_history_itemsDownload generated audioRead
elevenlabs_delete_history_itemDelete a history itemWrite

Conversational AI (ConvAI)

ToolDescriptionMode
-------------------------
elevenlabs_create_conversational_agentCreate a ConvAI agentWrite
elevenlabs_get_convai_agents_summariesList ConvAI agentsRead
elevenlabs_get_convai_agentGet agent configurationRead
elevenlabs_delete_convai_agentDelete an agentWrite
elevenlabs_create_convai_knowledge_baseAdd knowledge base documentWrite

Projects& Chapters

ToolDescriptionMode
-------------------------
elevenlabs_list_projectsList audio projectsRead
elevenlabs_add_projectCreate a new projectWrite
elevenlabs_get_chaptersGet chapters in a projectRead
elevenlabs_convert_chapterConvert chapter to audioWrite

Dubbing

ToolDescriptionMode
-------------------------
elevenlabs_dub_a_video_or_an_audio_fileDub video/audio to another languageWrite
elevenlabs_get_dubbing_project_metadataGet dubbing project statusRead
elevenlabs_delete_dubbing_projectDelete a dubbing projectWrite

Pronunciation Dictionaries

ToolDescriptionMode
-------------------------
elevenlabs_add_pronunciation_dictionary_from_rulesCreate pronunciation dictionaryWrite
elevenlabs_add_rules_to_the_pronunciation_dictionaryAdd rules to dictionaryWrite

Code Examples

List voices

clawlink_call_tool --tool "elevenlabs_list_voices" \
  --params '{}'

Text to speech

clawlink_call_tool --tool "elevenlabs_text_to_speech" \
  --params '{
    "text": "Hello, this is a test of the ElevenLabs text to speech system.",
    "voice_id": "YOUR_VOICE_ID"
  }'

Create a ConvAI agent

clawlink_call_tool --tool "elevenlabs_create_conversational_agent" \
  --params '{
    "name": "Customer Support Agent",
    "prompt": "You are a helpful customer support agent.",
    "voice_id": "YOUR_VOICE_ID"
  }'

Add knowledge base document

clawlink_call_tool --tool "elevenlabs_create_convai_knowledge_base" \
  --params '{
    "agent_id": "YOUR_AGENT_ID",
    "url": "https://example.com/docs"
  }'

Security & Permissions

  • Access is scoped to the connected ElevenLabs account's voices, projects, and agents.
  • All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Destructive actions (deleting voices, agents, projects) are marked as high-impact and must be confirmed.
  • ConvAI agent configurations may include sensitive business logic; confirm before modifications.
  • Some features (dubbing, high-quality voices) may require premium subscription tiers.

Notes

  • Voice cloning requires clear audio samples without background noise.
  • Audio generation may take time for longer texts; consider async patterns for large outputs.
  • ConvAI agents require configuration of prompt, voice, and potentially knowledge base.
  • Some API features are tier-dependent (free vs. paid plans).

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration elevenlabs.
Missing connectionElevenLabs is not connected. Direct the user to https://claw-link.dev/dashboard?add=elevenlabs.
Voice not foundThe voice ID does not exist or is not accessible.
Invalid API keyThe ElevenLabs API key is invalid. Reconnect the integration.
Conversion pendingAudio conversion is still processing. Poll for completion.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly elevenlabs.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.6 当前
    2026-06-09 16:13 安全 安全
  • v0.1.0
    2026-05-08 13:29 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

dev-programming

GitHub

hith3sh
通过 GitHub REST 和GraphQL API 与仓库、议题、拉取请求、提交、分支、发布和工作流进行交互。在需要时使用此技能。
★ 6 📥 1,950
design-media

Openai Whisper

steipete
使用 Whisper CLI 进行本地语音转文字(无需 API 密钥)
★ 330 📥 93,462
design-media

UI/UX Pro Max

xobi667
提供 UI/UX 设计智能与实现指导,帮助打造精美界面。适用于 UI 设计、UX 流程、信息架构、视觉风格、设计系统/标记、组件规格、文案/微文案、无障碍及前端 UI(HTML/CSS/JS、React、Next.js、Vue、Svelte
★ 216 📥 47,056