From sundial-org-awesome-openclaw-skills-4
Manages ElevenLabs conversational AI agents: list local/remote, create from templates, sync via pull/push, and deploy. Use for voice agent creation and configuration.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
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.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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.
Run these checks silently before attempting any agent operation:
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.
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.
When user asks to see their agents:
elevenlabs agents list (shows local agents)elevenlabs agents pull then list againWhen user wants to create an agent:
customer-serviceassistantvoice-onlyminimaldefaultelevenlabs agents add "Name" --template <template>elevenlabs agents pushPull (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."
elevenlabs agents status
Present as: "Here's the sync status of your agents:" followed by a clean summary.
When user wants to add integrations/tools:
elevenlabs agents tools add "Tool Name" --type webhook --config-path ./config.json
elevenlabs agents pushelevenlabs agents widget <agent_id>
Present the HTML snippet cleanly, explain where to paste it.
| 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?" |
After initialization, the working directory contains:
agents.json - Agent registryagent_configs/ - Agent configuration filestools.json - Tool registrytool_configs/ - Tool configurationsThese are implementation details - don't mention them to users unless they specifically ask about project structure.