voice-processing
Voice cloning workflows, voice library management, audio format conversion, and voice settings. Use when cloning voices, managing voice libraries, processing audio for voice creation, configuring voice settings, or when user mentions voice cloning, instant cloning, professional cloning, voice library, audio processing, voice settings, or ElevenLabs voices.
What this skill does
# Voice Processing Skill
This skill provides comprehensive voice processing capabilities for ElevenLabs including voice cloning (instant and professional), voice library management, audio format conversion, and voice settings configuration.
## Voice Cloning Overview
ElevenLabs offers two voice cloning approaches:
### Instant Voice Cloning (IVC)
- Requires only brief audio samples (1-5 minutes)
- Fast processing and quick turnaround
- Suitable for rapid prototyping and testing
- Cannot be shared in Voice Library
- Requires Creator plan or higher
### Professional Voice Cloning (PVC)
- Requires extended training audio (30+ minutes recommended)
- Hyper-realistic, high-quality output
- Suitable for production applications
- Can be shared in Voice Library for earnings
- Requires Creator plan or higher
## Available Scripts
### 1. clone-voice.sh
Clone a voice using instant or professional method.
**Usage:**
```bash
bash scripts/clone-voice.sh --name "Voice Name" --method instant --files "audio1.mp3,audio2.mp3"
bash scripts/clone-voice.sh --name "Voice Name" --method professional --files "audio1.mp3,audio2.mp3" --description "Voice description"
```
**Features:**
- Supports both instant and professional cloning
- Multiple audio file inputs
- Automatic file validation
- Voice captcha verification
- Returns voice ID for use in TTS
### 2. list-voices.sh
Fetch and list available voices with filtering options.
**Usage:**
```bash
bash scripts/list-voices.sh --category all
bash scripts/list-voices.sh --category cloned
bash scripts/list-voices.sh --category library --search "Australian narration"
```
**Features:**
- List all voices (owned, cloned, library)
- Filter by category (cloned, library, default, voice-design)
- Search by tags and descriptions
- Display voice details (name, ID, category, description)
- JSON or table output formats
### 3. process-audio.py
Process audio files for voice cloning preparation.
**Usage:**
```bash
python scripts/process-audio.py --input audio.mp3 --output processed.mp3 --sample-rate 22050
python scripts/process-audio.py --input audio.mp3 --output processed.mp3 --remove-noise --normalize
```
**Features:**
- Audio format conversion (MP3, WAV, FLAC, OGG)
- Sample rate conversion
- Noise reduction
- Audio normalization
- Silence trimming
- Quality validation
### 4. manage-voice-library.sh
Manage voice library operations.
**Usage:**
```bash
bash scripts/manage-voice-library.sh --action add --voice-id "abc123" --collection "My Voices"
bash scripts/manage-voice-library.sh --action share --voice-id "abc123" --enable-rewards
bash scripts/manage-voice-library.sh --action remove --voice-id "abc123"
```
**Features:**
- Add voices to library
- Share professional clones for rewards
- Remove voices from library
- Add descriptions and tags
- Manage voice collections
### 5. configure-voice-settings.sh
Configure and update voice settings.
**Usage:**
```bash
bash scripts/configure-voice-settings.sh --voice-id "abc123" --stability 0.75 --similarity 0.85
bash scripts/configure-voice-settings.sh --voice-id "abc123" --get-defaults
```
**Features:**
- Get default voice settings
- Get voice-specific settings
- Update stability parameter (0.0-1.0)
- Update similarity boost (0.0-1.0)
- Update style parameter (0.0-1.0)
- Validate settings before applying
## Templates
### 1. voice-clone-config.json.template
Configuration template for voice cloning operations.
**Variables:**
- `${VOICE_NAME}` - Name for the cloned voice
- `${VOICE_DESCRIPTION}` - Description of the voice
- `${CLONING_METHOD}` - "instant" or "professional"
- `${AUDIO_FILES}` - Array of audio file paths
- `${LABELS}` - Custom tags/labels for organization
### 2. voice-settings.json.template
Voice settings configuration template.
**Variables:**
- `${VOICE_ID}` - Voice identifier
- `${STABILITY}` - Stability parameter (0.0-1.0)
- `${SIMILARITY_BOOST}` - Similarity boost (0.0-1.0)
- `${STYLE}` - Style parameter (0.0-1.0)
- `${USE_SPEAKER_BOOST}` - Enable speaker boost (true/false)
### 3. voice-library-entry.json.template
Voice library entry configuration template.
**Variables:**
- `${VOICE_ID}` - Voice identifier
- `${DISPLAY_NAME}` - Public display name
- `${DESCRIPTION}` - Voice description
- `${TAGS}` - Array of searchable tags
- `${CATEGORY}` - Voice category
- `${ENABLE_REWARDS}` - Enable cash rewards (true/false)
### 4. audio-processing-config.json.template
Audio processing pipeline configuration.
**Variables:**
- `${INPUT_FORMAT}` - Input audio format
- `${OUTPUT_FORMAT}` - Output audio format
- `${SAMPLE_RATE}` - Target sample rate (Hz)
- `${BITRATE}` - Audio bitrate (kbps)
- `${REMOVE_NOISE}` - Enable noise reduction (true/false)
- `${NORMALIZE}` - Enable normalization (true/false)
### 5. voice-verification.json.template
Voice verification captcha configuration.
**Variables:**
- `${VOICE_ID}` - Voice to verify
- `${CAPTCHA_TYPE}` - Verification type
- `${VERIFICATION_TEXT}` - Text to speak for verification
### 6. batch-clone-config.json.template
Batch voice cloning configuration for multiple voices.
**Variables:**
- `${VOICES}` - Array of voice configurations
- `${COMMON_SETTINGS}` - Shared settings across all clones
- `${OUTPUT_DIRECTORY}` - Directory for voice IDs output
## Examples
### instant-cloning/
Complete example of instant voice cloning workflow.
**Contents:**
- `README.md` - Step-by-step guide for instant cloning
- `sample-audio/` - Example audio files
- `clone-workflow.sh` - Complete workflow script
- `verify-clone.sh` - Clone verification script
### professional-cloning/
Complete example of professional voice cloning workflow.
**Contents:**
- `README.md` - Step-by-step guide for professional cloning
- `sample-audio/` - Example training audio files (30+ minutes)
- `clone-workflow.sh` - Complete workflow script
- `training-guide.md` - Best practices for training audio
### voice-library/
Voice library browsing and management examples.
**Contents:**
- `README.md` - Voice library guide
- `search-voices.sh` - Search and filter examples
- `add-to-collection.sh` - Collection management
- `share-voice.sh` - Voice sharing workflow
### audio-processing/
Audio processing pipeline examples.
**Contents:**
- `README.md` - Audio processing guide
- `convert-formats.sh` - Format conversion examples
- `prepare-for-cloning.sh` - Audio preparation workflow
- `batch-process.sh` - Batch processing script
### voice-settings-optimization/
Voice settings optimization examples.
**Contents:**
- `README.md` - Settings optimization guide
- `optimize-stability.sh` - Stability tuning
- `optimize-similarity.sh` - Similarity tuning
- `test-settings.sh` - Settings testing workflow
## Voice Cloning Best Practices
### Audio Quality Requirements
1. **Sample Rate**: 22,050 Hz or higher recommended
2. **Format**: MP3, WAV, FLAC, or OGG
3. **Quality**: Clear audio with minimal background noise
4. **Duration**:
- Instant: 1-5 minutes minimum
- Professional: 30+ minutes recommended
5. **Content**: Natural speech, avoid music/effects
### Multiple Files
- More files improve clone quality
- Each file should be 30 seconds to 5 minutes
- Vary intonation and emotion across files
- Consistent recording environment
### Voice Settings Parameters
**Stability (0.0-1.0)**
- Lower values: More expressive, variable
- Higher values: More consistent, stable
- Default: 0.75
- Use case: Narration (high), Dialogue (medium), Emotional (low)
**Similarity Boost (0.0-1.0)**
- Lower values: More creative, varied
- Higher values: Closer to original voice
- Default: 0.75
- Use case: Clone fidelity vs. versatility trade-off
**Style (0.0-1.0)**
- Lower values: More neutral
- Higher values: More expressive
- Default: 0.0
- Use case: Character voices (high), Neutral narration (low)
## Voice Library Features
### Discovery
- Browse 5,000+ community voices
- Search by tags, descriptions, categories
- Preview voices before adding
- Filter by language, accent, characteristics
### Sharing
- Share Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".