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.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect ElevenLabs |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect ElevenLabs |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ 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 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."
# 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
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.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for elevenlabs in the list.
clawlink_list_tools --integration elevenlabs
Response: Returns the live tool catalog for ElevenLabs.
If ElevenLabs tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration elevenlabsclawlink_list_integrations to confirm ElevenLabs is connected.clawlink_list_tools --integration elevenlabs to see the live catalog.clawlink_search_tools with a short query and integration elevenlabs.┌─────────────────────────────────────────────────────────────┐
│ 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 │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
elevenlabs_list_voices | List all voices in the account | Read |
elevenlabs_get_voice | Get voice details | Read |
elevenlabs_add_voice | Add a custom voice by uploading audio | Write |
elevenlabs_edit_voice | Update voice name, audio, or settings | Write |
elevenlabs_delete_voice | Delete a custom voice | Write |
elevenlabs_get_audio_from_sample | Get audio from a voice sample | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
elevenlabs_text_to_speech | Convert text to speech audio | Write |
elevenlabs_download_history_items | Download generated audio | Read |
elevenlabs_delete_history_item | Delete a history item | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
elevenlabs_create_conversational_agent | Create a ConvAI agent | Write |
elevenlabs_get_convai_agents_summaries | List ConvAI agents | Read |
elevenlabs_get_convai_agent | Get agent configuration | Read |
elevenlabs_delete_convai_agent | Delete an agent | Write |
elevenlabs_create_convai_knowledge_base | Add knowledge base document | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
elevenlabs_list_projects | List audio projects | Read |
elevenlabs_add_project | Create a new project | Write |
elevenlabs_get_chapters | Get chapters in a project | Read |
elevenlabs_convert_chapter | Convert chapter to audio | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
elevenlabs_dub_a_video_or_an_audio_file | Dub video/audio to another language | Write |
elevenlabs_get_dubbing_project_metadata | Get dubbing project status | Read |
elevenlabs_delete_dubbing_project | Delete a dubbing project | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
elevenlabs_add_pronunciation_dictionary_from_rules | Create pronunciation dictionary | Write |
elevenlabs_add_rules_to_the_pronunciation_dictionary | Add rules to dictionary | Write |
clawlink_call_tool --tool "elevenlabs_list_voices" \
--params '{}'
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"
}'
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"
}'
clawlink_call_tool --tool "elevenlabs_create_convai_knowledge_base" \
--params '{
"agent_id": "YOUR_AGENT_ID",
"url": "https://example.com/docs"
}'
| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration elevenlabs. |
| Missing connection | ElevenLabs is not connected. Direct the user to https://claw-link.dev/dashboard?add=elevenlabs. |
Voice not found | The voice ID does not exist or is not accessible. |
Invalid API key | The ElevenLabs API key is invalid. Reconnect the integration. |
Conversion pending | Audio conversion is still processing. Poll for completion. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.elevenlabs.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本