Skip to main content

speech-generator

Generate speech audio from text using ElevenLabs TTS. Use when user asks to 'send voice', 'send audio message', 'create voice', 'generate speech', 'say something', 'voice message', 'send me audio', or needs TTS/narration.

Jump to install

Source facts

Repository
aviz85/claude-skills-library
Last source activity
January 28, 2026 at 11:27
Detected SKILL.md language
English
Stars
49
Forks
14

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
6 files

Showing SKILL.md

SKILL.md
Source instructions ยท Read-only preview
name
speech-generator
description
Generate speech audio from text using ElevenLabs TTS. Use when user asks to 'send voice', 'send audio message', 'create voice', 'generate speech', 'say something', 'voice message', 'send me audio', or needs TTS/narration.
version
1.0.0
author
aviz85
tags
["tts","speech","audio","elevenlabs","voice"]
setup
./SETUP.md
setup_complete
false
# Speech Generator > **First time?** If `setup_complete: false` above, run `./SETUP.md` first, then set `setup_complete: true`. Generate speech audio using ElevenLabs TTS. ## Voice ID Configure your voice ID from ElevenLabs: ``` YOUR_VOICE_ID ``` > Get voice IDs from [ElevenLabs](https://elevenlabs.io/) - you can use built-in voices or clone your own. ## Prompt Guidelines (Hebrew) Write prompts as natural spoken Hebrew. Use square brackets `[...]` for speech directions. ### Direction Examples ``` [ื ืฉื™ืžื” ืขืžื•ืงื”] ืื•ืงื™ื™, ืื– ื‘ื•ืื• ื ื“ื‘ืจ ืขืœ ื–ื”... [ืฆื—ื•ืง ืงืœ] ื–ื” ืžืžืฉ ืžืฆื—ื™ืง ืฉืืชื” ืื•ืžืจ ืืช ื–ื” [ื‘ื”ืชืœื”ื‘ื•ืช] ื•ื•ืื•! ื–ื” ื‘ื“ื™ื•ืง ืžื” ืฉื—ื™ื›ื™ืชื™ ืœื•! [ื‘ืจืฆื™ื ื•ืช] ืขื›ืฉื™ื•, ืชืงืฉื™ื‘ื• ื˜ื•ื‘... [ื‘ืขืฆื‘] ืื ื™ ืœื ื™ื•ื“ืข ืžื” ืœื”ื’ื™ื“... [ื‘ืฉืงื˜] ื–ื” ืกื•ื“, ืื‘ืœ... [ืžื”ืจ] ืฆืจื™ืš ืœืจื•ืฅ ืขื›ืฉื™ื•, ืื™ืŸ ื–ืžืŸ! [ืœืื˜ ื•ื‘ื‘ื™ืจื•ืจ] ื—ืฉื•ื‘. ืžืื•ื“. ืœื”ืงืฉื™ื‘. [ืฉืืœื”] ืืชื” ื‘ื˜ื•ื— ืฉื–ื” ืžื” ืฉืืชื” ืจื•ืฆื”? [ื”ืคืชืขื”] ืจื’ืข, ืžื”?! ``` ### Natural Speech Patterns Add filler words and pauses for natural flow: - `ืืžืž...` - `ืื”ื”...` - `ื›ืื™ืœื•...` - `ื ื•...` - `ื™ืืœืœื”...` - `ื‘ืงื™ืฆื•ืจ...` - `...` (pause) ### Example Prompt ``` [ื‘ื”ืชืœื”ื‘ื•ืช] ื”ื™ื™! ืžื” ืงื•ืจื”? ืืžืž... ืื– ืจืฆื™ืชื™ ืœืกืคืจ ืœื›ื ืžืฉื”ื• ืžื˜ื•ืจืฃ ืฉืงืจื” ืœื™ ื”ื™ื•ื. [ื ืฉื™ืžื”] ืื– ื”ืœื›ืชื™ ืœืงืคื”, ื•ื•ืืœื”, ืคืชืื•ื ืจื•ืื” ืืช... [ื‘ืฉืงื˜] ืืชื” ืœื ืชืืžื™ืŸ ืœืžื™. [ืฆื—ื•ืง] ื›ืŸ, ื‘ื“ื™ื•ืง ืžื™ ืฉื—ืฉื‘ืช! ``` ## Commands ```bash cd ~/.claude/skills/speech-generator/scripts # Generate speech npx ts-node generate_speech.ts \ -t "[ื‘ื”ืชืœื”ื‘ื•ืช] ื”ื™ื™! ืžื” ืงื•ืจื”?" \ -o /path/to/output.mp3 # From file npx ts-node generate_speech.ts \ -f /path/to/script.txt \ -o /path/to/output.mp3 # List voices npx ts-node generate_speech.ts --list-voices ``` ## Options | Option | Short | Default | |--------|-------|---------| | `--text` | `-t` | Text to speak | | `--file` | `-f` | Read from file | | `--output` | `-o` | Output path (required) | | `--voice` | `-v` | Voice ID | | `--speed` | | 1.0 | | `--stability` | | 0.5 | | `--similarity` | | 0.75 |
View on GitHub