Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub dnvriend/elevenlabs-tts-tool --plugin elevenlabs-tts-toolHow this command is triggered — by the user, by Claude, or both
Slash command
/elevenlabs-tts-tool:synthesize textThe summary Claude sees in its command listing — used to decide when to auto-load this command
Convert TEXT to speech using ElevenLabs API. Play through speakers or save to file. ## Usage ## Arguments - `TEXT`: Text to synthesize (required, or use --stdin) - `--stdin, -s`: Read text from stdin instead - `--voice, -v NAME`: Voice name or ID (default: rachel) - `--model, -m ID`: Model ID (default: eleven_turbo_v2_5) - `--output, -o PATH`: Save to file instead of playing - `--format, -f FORMAT`: Output format (default: mp3_44100_128) ## Examples ## Output Plays audio through speakers or saves to file in specified format.
/elevenlabs-agentsBuilds a conversational AI voice agent with ElevenLabs. Provide optional [agent-name] or describe the agent's purpose when prompted.
/speakEnables, disables, or configures voice feedback: set voice (e.g., azelma), toggle enabled state, add custom prompts. Manages ~/.claude/voice.local.md YAML config.
/synthesizeSynthesizes qualitative research data like interview or observation notes into affinity diagrams, themes, jobs-to-be-done maps, and prioritized design implications.
/synthesizeSynthesizes findings from multiple sources into coherent conclusions with uncertainty quantification. Accepts a topic or research question.
/synthesizeCreates a pull request from the current feature branch, including a formatted description. Supports stacked PRs, auto-merge, and state tracking for idempotent re-runs.
Share bugs, ideas, or general feedback.
Convert TEXT to speech using ElevenLabs API. Play through speakers or save to file.
elevenlabs-tts-tool synthesize TEXT [OPTIONS]
TEXT: Text to synthesize (required, or use --stdin)--stdin, -s: Read text from stdin instead--voice, -v NAME: Voice name or ID (default: rachel)--model, -m ID: Model ID (default: eleven_turbo_v2_5)--output, -o PATH: Save to file instead of playing--format, -f FORMAT: Output format (default: mp3_44100_128)# Basic usage
elevenlabs-tts-tool synthesize "Hello world"
# Different voice
elevenlabs-tts-tool synthesize "Hello" --voice adam
# Emotional expression (requires eleven_v3)
elevenlabs-tts-tool synthesize "[happy] Welcome!" --model eleven_v3
# Read from stdin
echo "Text" | elevenlabs-tts-tool synthesize --stdin
# Save to file
elevenlabs-tts-tool synthesize "Text" --output speech.mp3
Plays audio through speakers or saves to file in specified format.