Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
CLI for ElevenLabs AI audio platform - text-to-speech, speech-to-text, voice cloning, and more --- name: elevenlabs-cli description: CLI for ElevenLabs AI audio platform - text-to-speech, speech-to-text, voice cloning, and more homepage: https://github.com/hongkongkiwi/elevenlabs-cli metadata: clawdbot: emoji: "๐๏ธ" requires: env: ["ELEVENLABS_API_KEY"] primaryEnv: "ELEVENLABS_API_KEY" --- ElevenLabs CLI **Unofficial CLI**: This is an independent, community-built CLI client. It is not officially released by El Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
elevenlabs-cli is best for bot workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
CLI for ElevenLabs AI audio platform - text-to-speech, speech-to-text, voice cloning, and more --- name: elevenlabs-cli description: CLI for ElevenLabs AI audio platform - text-to-speech, speech-to-text, voice cloning, and more homepage: https://github.com/hongkongkiwi/elevenlabs-cli metadata: clawdbot: emoji: "๐๏ธ" requires: env: ["ELEVENLABS_API_KEY"] primaryEnv: "ELEVENLABS_API_KEY" --- ElevenLabs CLI **Unofficial CLI**: This is an independent, community-built CLI client. It is not officially released by El
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Hongkongkiwi
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/hongkongkiwi/skill-elevenlabs-cli.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Hongkongkiwi
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
brew tap hongkongkiwi/tap brew install elevenlabs-cli
powershell
scoop bucket add elevenlabs-cli https://github.com/hongkongkiwi/scoop-elevenlabs-cli scoop install elevenlabs-cli
bash
sudo snap install elevenlabs-cli
bash
cargo install elevenlabs-cli
bash
docker pull ghcr.io/hongkongkiwi/elevenlabs-cli:latest docker run --rm -e ELEVENLABS_API_KEY=your-key ghcr.io/hongkongkiwi/elevenlabs-cli tts "Hello!"
bash
# Set API key via environment variable export ELEVENLABS_API_KEY="your-api-key" # Or save to config file (~/.config/elevenlabs-cli/config.toml) elevenlabs config set api_key your-api-key # Set default voice and model elevenlabs config set default_voice Brian elevenlabs config set default_model eleven_multilingual_v2
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
CLI for ElevenLabs AI audio platform - text-to-speech, speech-to-text, voice cloning, and more --- name: elevenlabs-cli description: CLI for ElevenLabs AI audio platform - text-to-speech, speech-to-text, voice cloning, and more homepage: https://github.com/hongkongkiwi/elevenlabs-cli metadata: clawdbot: emoji: "๐๏ธ" requires: env: ["ELEVENLABS_API_KEY"] primaryEnv: "ELEVENLABS_API_KEY" --- ElevenLabs CLI **Unofficial CLI**: This is an independent, community-built CLI client. It is not officially released by El
Unofficial CLI: This is an independent, community-built CLI client. It is not officially released by ElevenLabs.
A comprehensive command-line interface for the ElevenLabs AI audio platform with 100% SDK coverage. Generate speech, transcribe audio, clone voices, and more.
This guide is CLI-first for LLM agents: invoke the elevenlabs binary directly with explicit commands, flags, and file paths.
This skill instructs the CLI to call the following external services:
| Endpoint | Purpose | Data Sent |
|----------|---------|-----------|
| https://api.elevenlabs.io/* | ElevenLabs API | API key (auth), text/audio content, voice settings |
| https://github.com/hongkongkiwi/elevenlabs-cli/* | Package downloads | None (public) |
api.elevenlabs.io for authenticationBy using this skill, you will send your ElevenLabs API key and audio/text content to ElevenLabs servers. Only install this skill if you trust ElevenLabs with your data. This is an unofficial community-maintained CLI.
brew tap hongkongkiwi/tap
brew install elevenlabs-cli
scoop bucket add elevenlabs-cli https://github.com/hongkongkiwi/scoop-elevenlabs-cli
scoop install elevenlabs-cli
sudo snap install elevenlabs-cli
cargo install elevenlabs-cli
docker pull ghcr.io/hongkongkiwi/elevenlabs-cli:latest
docker run --rm -e ELEVENLABS_API_KEY=your-key ghcr.io/hongkongkiwi/elevenlabs-cli tts "Hello!"
# Set API key via environment variable
export ELEVENLABS_API_KEY="your-api-key"
# Or save to config file (~/.config/elevenlabs-cli/config.toml)
elevenlabs config set api_key your-api-key
# Set default voice and model
elevenlabs config set default_voice Brian
elevenlabs config set default_model eleven_multilingual_v2
tts)Convert text to natural speech with 100+ voices.
# Basic usage - speaks text and saves to file
elevenlabs tts "Hello, world!"
# Specify voice and model
elevenlabs tts "Hello!" --voice Rachel --model eleven_v3
# Save to specific file
elevenlabs tts "Hello!" --output speech.mp3
# Read text from file
elevenlabs tts --file script.txt --output audiobook.mp3
# Adjust voice settings
elevenlabs tts "Hello!" --stability 0.5 --similarity-boost 0.75 --style 0.3
# Play audio after generation (requires audio feature)
elevenlabs tts "Hello!" --play
# Specify language for multilingual models
elevenlabs tts "Bonjour!" --language fr
# Use seed for reproducible output
elevenlabs tts "Hello!" --seed 12345
stt)Transcribe audio with speaker diarization and timestamps.
# Transcribe audio file
elevenlabs stt audio.mp3
# Enable speaker diarization (identify speakers)
elevenlabs stt meeting.mp3 --diarize --num-speakers 3
# Output as subtitles
elevenlabs stt video.mp3 --format srt --output subtitles.srt
# With word-level timestamps
elevenlabs stt audio.mp3 --timestamps word
# Record from microphone and transcribe
elevenlabs stt --record --duration 10
voice)Manage voices including cloning and settings.
# List all voices
elevenlabs voice list
# Get voice details
elevenlabs voice get <voice-id>
# Clone a voice from audio samples
elevenlabs voice clone --name "My Voice" --samples sample1.mp3,sample2.mp3
# Clone from directory of samples
elevenlabs voice clone --name "My Voice" --samples-dir ./samples/
# Get voice settings
elevenlabs voice settings <voice-id>
# Edit voice settings
elevenlabs voice edit-settings <voice-id> --stability 0.6 --similarity-boost 0.8
# Delete a voice
elevenlabs voice delete <voice-id>
# Share a voice publicly
elevenlabs voice share <voice-id>
# Find similar voices
elevenlabs voice similar --voice-id <voice-id>
elevenlabs voice similar --text "deep male voice with british accent"
sfx)Generate sound effects from text descriptions.
# Generate sound effect
elevenlabs sfx "door creaking slowly in a haunted house"
# Specify duration (0.5-22 seconds)
elevenlabs sfx "thunder rumbling" --duration 10 --output thunder.mp3
isolate)Remove background noise from audio.
# Remove background noise
elevenlabs isolate noisy_audio.mp3 --output clean_audio.mp3
voice-changer)Transform voice in audio files to a different voice.
# Transform voice in audio file
elevenlabs voice-changer input.mp3 --voice Rachel --output transformed.mp3
# Record from microphone and transform
elevenlabs voice-changer --record --duration 10 --voice Rachel --output output.mp3
dub)Translate and dub video/audio to other languages.
# Create dubbing project
elevenlabs dub create --file video.mp4 --source-lang en --target-lang es
# Check dubbing status
elevenlabs dub status <dubbing-id>
# Download dubbed file
elevenlabs dub download <dubbing-id> --output dubbed.mp4
dialogue)Generate multi-voice dialogues.
# Create dialogue with multiple voices
elevenlabs dialogue --inputs "Hello there!:Brian,Hi! How are you?:Rachel,I'm great thanks!:Brian"
# Save to file
elevenlabs dialogue --inputs "..." --output dialogue.mp3
agent)Manage conversational AI agents.
# List agents
elevenlabs agent list
# Create agent
elevenlabs agent create --name "Support Bot" --voice-id <voice-id> --first-message "Hello!"
# Get agent details
elevenlabs agent get <agent-id>
# Delete agent
elevenlabs agent delete <agent-id>
knowledge)Manage documents for RAG.
# List documents
elevenlabs knowledge list
# Add document from URL
elevenlabs knowledge add-from-url --url https://example.com/doc --name "Documentation"
# Add document from file
elevenlabs knowledge add-from-file --file document.pdf --name "PDF Doc"
history)View and manage generation history.
# List generation history
elevenlabs history list
# Download audio from history
elevenlabs history download <history-item-id> --output audio.mp3
# Get user info
elevenlabs user info
# Get usage statistics
elevenlabs usage stats
config)# Set config value
elevenlabs config set api_key your-key
# Get config value
elevenlabs config get api_key
# List all config
elevenlabs config list
# Generate shell completions
elevenlabs completions bash > ~/.bash_completion.d/elevenlabs
elevenlabs completions zsh > "${fpath[1]}/_elevenlabs"
elevenlabs completions fish > ~/.config/fish/completions/elevenlabs.fish
# Update CLI to latest version
elevenlabs update
# Interactive mode (REPL)
elevenlabs interactive
| Format | Description |
|--------|-------------|
| mp3_44100_128 | MP3 44.1kHz 128kbps (default) |
| mp3_44100_192 | MP3 44.1kHz 192kbps |
| wav_44100 | WAV 44.1kHz |
| pcm_16000 | PCM 16kHz |
| opus_48000_128 | Opus 48kHz 128kbps |
| Model | Description |
|-------|-------------|
| eleven_multilingual_v2 | Best quality, 29 languages (default) |
| eleven_flash_v2_5 | Lowest latency |
| eleven_v3 | Expressive, emotional speech |
| Model | Description |
|-------|-------------|
| scribe_v1 | High accuracy transcription (default) |
| scribe_v1_base | Faster, lower cost |
elevenlabs, tts, text-to-speech, stt, speech-to-text, audio, voice, voice-cloning, voice-synthesis, ai, cli
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/snapshot"
curl -s "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/contract"
curl -s "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:17:12.996Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "bot",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:bot|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Hongkongkiwi",
"href": "https://github.com/hongkongkiwi/skill-elevenlabs-cli",
"sourceUrl": "https://github.com/hongkongkiwi/skill-elevenlabs-cli",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:35.407Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T01:14:35.407Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/hongkongkiwi-skill-elevenlabs-cli/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to elevenlabs-cli and adjacent AI workflows.