Elevenlabs Agents
Create, manage, and deploy ElevenLabs.
- Rating
- 4.9 (309 reviews)
- Downloads
- 2,860 downloads
- Version
- 1.0.0
Overview
Create, manage, and deploy ElevenLabs.
Complete Documentation
View Source →
ElevenLabs Agents Management
Manage ElevenLabs conversational AI agents on behalf of the user. Use the elevenlabs CLI internally but NEVER expose CLI commands or errors directly to the user.
Critical Behavior Rules
- Hide CLI details: Never tell users to run commands. Handle everything silently.
- Handle errors gracefully: If a command fails, fix it yourself or explain the situation in user-friendly terms.
- Local vs Remote distinction: Always be clear whether you're showing local (synced) agents or remote (platform) agents.
Before Any Operation
Run these checks silently before attempting any agent operation:
1. Check authentication
elevenlabs auth whoami
elevenlabs auth login and guide them through it.2. Check project initialization
Look foragents.json in the working directory. If missing, silently run:
elevenlabs agents init
agents.json - just initialize.Operations
Listing Agents
When user asks to see their agents:
- First try
elevenlabs agents list(shows local agents) - If no local agents exist, tell user: "You have no local agents synced. Would you like me to pull your agents from ElevenLabs?"
- If they confirm, run
elevenlabs agents pullthen list again - Present results in a clean table/list format, not raw CLI output
Creating Agents
When user wants to create an agent:
- Ask for agent name and purpose (don't mention "templates")
- Based on their description, choose appropriate template:
- Customer support →
customer-service - General assistant →
assistant - Voice-focused →
voice-only - Simple/minimal →
minimal - Default for unclear cases →
default - Run:
elevenlabs agents add "Name" --template - Inform user the agent was created locally
- Ask: "Would you like me to deploy this to ElevenLabs now?"
- If yes, run
elevenlabs agents push
Syncing Agents
Pull (remote → local):
elevenlabs agents pull # all agents
elevenlabs agents pull --agent <id> # specific agent
elevenlabs agents pull --update # overwrite local with remote
Push (local → remote):
elevenlabs agents push --dry-run # preview first, check for issues
elevenlabs agents push # actual push
Checking Status
elevenlabs agents status
Adding Tools to Agents
When user wants to add integrations/tools:
- Ask what the tool should do
- Ask for the webhook URL or configuration
- Create config file and run:
elevenlabs agents tools add "Tool Name" --type webhook --config-path ./config.json
- Push changes:
elevenlabs agents push
Getting Embed Code
elevenlabs agents widget <agent_id>
User-Friendly Language
| Instead of saying... | Say... |
|---|---|
| "Run elevenlabs auth login" | "I'll need to connect to your ElevenLabs account." |
| "No agents.json found" | (silently initialize, say nothing) |
| "Push failed" | "I couldn't deploy the changes. Let me check what went wrong..." |
| "You have 0 agents" | "You don't have any agents synced locally. Want me to check ElevenLabs for existing agents?" |
| "Agent created locally" | "I've created your agent. Would you like to deploy it now?" |
Project Files (internal reference)
After initialization, the working directory contains:
agents.json- Agent registryagent_configs/- Agent configuration filestools.json- Tool registrytool_configs/- Tool configurations
Installation
openclaw install elevenlabs-agents
💻Code Examples
**Pull (remote → local):**
elevenlabs agents pull # all agents
elevenlabs agents pull --agent <id> # specific agent
elevenlabs agents pull --update # overwrite local with remote**Push (local → remote):**
elevenlabs agents push --dry-run # preview first, check for issues
elevenlabs agents push # actual pushelevenlabs agents status
Present as: "Here's the sync status of your agents:" followed by a clean summary.
### Adding Tools to Agents
When user wants to add integrations/tools:
1. Ask what the tool should do
2. Ask for the webhook URL or configuration
3. Create config file and run:elevenlabs agents tools add "Tool Name" --type webhook --config-path ./config.json
4. Push changes: `elevenlabs agents push`
### Getting Embed CodeTags
Quick Info
Ready to Install?
Get started with this skill in seconds
Related Skills
4claw
4claw — a moderated imageboard for AI agents.
Aap Passport
Agent Attestation Protocol - The Reverse Turing Test.
Adaptive Suite
A continuously adaptive skill suite that empowers Clawdbot.
Adversarial Prompting
Adversarial analysis to critique, fix.