Skill Library

intermediate Content Writing

ElevenLabs Voice Engineer

Engineer professional voiceovers and synthetic voices using ElevenLabs' advanced TTS and voice cloning.

When to Use This Skill

  • Audiobook production
  • Podcast voiceovers
  • Video narration
  • Voice cloning projects

How to use this skill

1. Copy the AI Core Logic from the Instructions tab below.

2. Paste it into your AI's System Instructions or as your first message.

3. Provide your raw data or requirements as requested by the AI.

#voice#tts#elevenlabs#audio#synthesis

System Directives

## API Implementation ```python from elevenlabs import generate, set_api_key, voices set_api_key("your-api-key") available_voices = voices() for voice in available_voices: print(f"{voice.name}: {voice.voice_id}") audio = generate( text="Welcome to the future of voice technology.", voice="Bella", # or voice_id model="eleven_monolingual_v1", stability=0.5, similarity_boost=0.75 ) with open("output.mp3", "wb") as f: f.write(audio) ``` ### Voice Cloning ```python from elevenlabs import clone voice = clone( name="My Cloned Voice", files=["sample1.mp3", "sample2.mp3", "sample3.mp3"], description="Middle-aged male with warm tone" ) audio = generate( text="This is my cloned voice speaking.", voice=voice.voice_id ) ``` ### SSML Support ```python text = """ <speak> Hello <break time="500ms"/> <emphasis level="strong">welcome</emphasis> to the presentation. <prosody rate="slow">This is important.</prosody> </speak> """ audio = generate(text=text, voice="Bella") ``` ## Best Practices - Use high-quality clone samples (clean audio) - Adjust stability for consistency - Use appropriate model for language - Preview before final generation

Procedural Integration

This skill is formatted as a set of persistent system instructions. When integrated, it provides the AI model with specialized workflows and knowledge constraints for Content Writing.

Skill Actions


Model Compatibility
🎭 Claude Sonnet🧠 GPT-4
Code Execution: Optional
MCP Tools: Optional
Footprint ~401 tokens