installation
The ElevenLabs CLI is the recommended way to create and manage agents:
$ npx -y skills add calesthio/OpenMontage --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
Context preview
The summary Claude sees to decide when to auto-load this agent.
The ElevenLabs CLI is the recommended way to create and manage agents:
Agent definition
installation.mdInstallation
CLI (Recommended)
The ElevenLabs CLI is the recommended way to create and manage agents:
npm install -g @elevenlabs/cli
# or
pnpm add -g @elevenlabs/cli
# or
yarn global add @elevenlabs/cli
Requires Node.js 16.0.0 or higher.
Authentication
elevenlabs auth login # Authenticate with API key
elevenlabs auth whoami # Verify current login status
elevenlabs auth logout # Remove stored credentials
API keys are securely stored in `~/.agents/api_keys.json`.
Quick Start
# Initialize a new project
elevenlabs agents init
# Create an agent from template
elevenlabs agents add "My Assistant" --template complete
# Push to ElevenLabs platform
elevenlabs agents push
JavaScript / TypeScript SDK
For programmatic access and client-side integration:
npm install @elevenlabs/elevenlabs-js
> **Important:** Always use `@elevenlabs/elevenlabs-js`. The old `elevenlabs` npm package (v1.x) is deprecated and should not be used.
import { ElevenLabsClient } from "@elevenlabs/elevenlabs-js";
// Option 1: Environment variable (recommended)
// Set ELEVENLABS_API_KEY in your environment
const client = new ElevenLabsClient();
// Option 2: Pass directly
const client = new ElevenLabsClient({ apiKey: "your-api-key" });Migrating from deprecated packages
If you have old packages installed, remove them:
# Remove deprecated packages
npm uninstall elevenlabs
# Install the current packages
npm install @elevenlabs/elevenlabs-js
# For client-side/browser usage, also install:
npm install @elevenlabs/client # Browser client
npm install @elevenlabs/react # React hooks
**Import changes:**
import { ElevenLabsClient } from "@elevenlabs/elevenlabs-js";
import { Conversation } from "@elevenlabs/client";
import { useConversation } from "@elevenlabs/react";Python
pip install elevenlabs
from elevenlabs import ElevenLabs
# Option 1: Environment variable (recommended)
# Set ELEVENLABS_API_KEY in your environment
client = ElevenLabs()
# Option 2: Pass directly
client = ElevenLabs(api_key="your-api-key")
cURL / REST API
Set your API key as an environment variable:
export ELEVENLABS_API_KEY="your-api-key"
Include in requests via the `xi-api-key` header:
curl -X POST "https://api.elevenlabs.io/v1/convai/agents/create" \
-H "xi-api-key: $ELEVENLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "My Agent", "conversation_config": {"agent": {"prompt": {"prompt": "You are helpful.", "llm": "gemini-2.0-flash"}}, "tts": {"voice_id": "JBFqnCBsd6RMkjVDRZzb"}}}'Getting an API Key
1. Sign up at [elevenlabs.io](https://elevenlabs.io) 2. Go to [API Keys](https://elevenlabs.io/app/settings/api-keys) 3. Click **Create API Key** 4. Copy and store securely
Or use the `setup-api-key` skill for guided setup.
Environment Variables
| Variable | Description | |----------|-------------| | `ELEVENLABS_API_KEY` | Your ElevenLabs API key (required) |
Read more
Installation
CLI (Recommended)
The ElevenLabs CLI is the recommended way to create and manage agents:
npm install -g @elevenlabs/cli # or pnpm add -g @elevenlabs/cli # or yarn global add @elevenlabs/cli
Requires Node.js 16.0.0 or higher.
Authentication
elevenlabs auth login # Authenticate with API key elevenlabs auth whoami # Verify current login status elevenlabs auth logout # Remove stored credentials
API keys are securely stored in `~/.agents/api_keys.json`.
Quick Start
# Initialize a new project elevenlabs agents init # Create an agent from template elevenlabs agents add "My Assistant" --template complete # Push to ElevenLabs platform elevenlabs agents push
JavaScript / TypeScript SDK
For programmatic access and client-side integration:
npm install @elevenlabs/elevenlabs-js
> **Important:** Always use `@elevenlabs/elevenlabs-js`. The old `elevenlabs` npm package (v1.x) is deprecated and should not be used.
import { ElevenLabsClient } from "@elevenlabs/elevenlabs-js";
// Option 1: Environment variable (recommended)
// Set ELEVENLABS_API_KEY in your environment
const client = new ElevenLabsClient();
// Option 2: Pass directly
const client = new ElevenLabsClient({ apiKey: "your-api-key" });Migrating from deprecated packages
If you have old packages installed, remove them:
# Remove deprecated packages npm uninstall elevenlabs # Install the current packages npm install @elevenlabs/elevenlabs-js # For client-side/browser usage, also install: npm install @elevenlabs/client # Browser client npm install @elevenlabs/react # React hooks
**Import changes:**
import { ElevenLabsClient } from "@elevenlabs/elevenlabs-js";
import { Conversation } from "@elevenlabs/client";
import { useConversation } from "@elevenlabs/react";Python
pip install elevenlabs
from elevenlabs import ElevenLabs # Option 1: Environment variable (recommended) # Set ELEVENLABS_API_KEY in your environment client = ElevenLabs() # Option 2: Pass directly client = ElevenLabs(api_key="your-api-key")
cURL / REST API
Set your API key as an environment variable:
export ELEVENLABS_API_KEY="your-api-key"
Include in requests via the `xi-api-key` header:
curl -X POST "https://api.elevenlabs.io/v1/convai/agents/create" \
-H "xi-api-key: $ELEVENLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "My Agent", "conversation_config": {"agent": {"prompt": {"prompt": "You are helpful.", "llm": "gemini-2.0-flash"}}, "tts": {"voice_id": "JBFqnCBsd6RMkjVDRZzb"}}}'Getting an API Key
1. Sign up at [elevenlabs.io](https://elevenlabs.io) 2. Go to [API Keys](https://elevenlabs.io/app/settings/api-keys) 3. Click **Create API Key** 4. Copy and store securely
Or use the `setup-api-key` skill for guided setup.
Environment Variables
| Variable | Description | |----------|-------------| | `ELEVENLABS_API_KEY` | Your ElevenLabs API key (required) |
World's first open-source, agentic video production system. 12 production pipelines, 100+ tools, 700+ agent skill and production-knowledge files. Turn your AI coding assistant into a full video production studio.
Repo: calesthio/OpenMontage
Other agents on openmontage.
- agent-configuration
Complete reference for configuring conversational AI agents.
Open agent - client-tools
Extend your agent with custom capabilities. Tools let the agent take actions beyond just talking.
Open agent - outbound-calls
Make outbound phone calls using your ElevenLabs agent via Twilio integration.
Open agent - widget-embedding
Add a voice AI agent to any website with the ElevenLabs conversation widget.
Open agent

