# Send ElevenLabs Agents 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-agents",
    "name": "ElevenLabs Agents",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/PennyroyalTea/elevenlabs-agents",
    "canonicalUrl": "https://clawhub.ai/PennyroyalTea/elevenlabs-agents",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/elevenlabs-agents",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs-agents",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "elevenlabs-agents",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T07:53:54.707Z",
      "expiresAt": "2026-05-08T07:53:54.707Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs-agents",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=elevenlabs-agents",
        "contentDisposition": "attachment; filename=\"elevenlabs-agents-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "elevenlabs-agents"
      },
      "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-agents"
    },
    "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-agents",
    "downloadUrl": "https://openagent3.xyz/downloads/elevenlabs-agents",
    "agentUrl": "https://openagent3.xyz/skills/elevenlabs-agents/agent",
    "manifestUrl": "https://openagent3.xyz/skills/elevenlabs-agents/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/elevenlabs-agents/agent.md"
  }
}
```
## Documentation

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

If not authenticated, tell the user: "You're not logged into ElevenLabs. I'll need your API key to continue." Then run elevenlabs auth login and guide them through it.

### 2. Check project initialization

Look for agents.json in the working directory. If missing, silently run:

elevenlabs agents init

Never tell the user about missing agents.json - just initialize.

### 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 pull then 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 <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

Tell user: "I've synced your agents from ElevenLabs."

Push (local → remote):

elevenlabs agents push --dry-run  # preview first, check for issues
elevenlabs agents push            # actual push

Tell user: "I've deployed your changes to ElevenLabs."

### Checking Status

elevenlabs 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:

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>

Present the HTML snippet cleanly, explain where to paste it.

### 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 registry
agent_configs/ - Agent configuration files
tools.json - Tool registry
tool_configs/ - Tool configurations

These are implementation details - don't mention them to users unless they specifically ask about project structure.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: PennyroyalTea
- Version: 1.0.0
## 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-01T07:53:54.707Z
- Expires at: 2026-05-08T07:53:54.707Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/elevenlabs-agents)
- [Send to Agent page](https://openagent3.xyz/skills/elevenlabs-agents/agent)
- [JSON manifest](https://openagent3.xyz/skills/elevenlabs-agents/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/elevenlabs-agents/agent.md)
- [Download page](https://openagent3.xyz/downloads/elevenlabs-agents)