Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
A direct command skips the review prompt. Inspect the source before running it.
Domain: AI Audio / Voice Cloning Version: 1.0.0 Last Updated: 2026-04-15 Author: Alex (Master Alex) Related: text-to-speech (generation), visual-memory (photos)
Overview
Store voice samples for TTS voice cloning in a portable, version-controlled format. Unlike visual memory (base64 inline), audio files are stored as files with JSON metadata — audio is too large to embed sensibly.
Content: Natural speech with varied intonation (not monotone reading)
Quality: Clear audio, no background noise, no music
Format: WAV 16kHz+ or MP3
Recording Tips
Use a quiet room with minimal echo
Speak naturally — include some pauses, varied pitch
Avoid reading monotonously — conversational tone works best
Keep microphone at consistent distance (~6-12 inches)
Include a variety of sounds (different vowels, consonants)
Example Recording Script
"Hello, I'm [Name]. Today I want to share some thoughts about technology and how it shapes our daily lives. The key is finding balance — embracing innovation while staying grounded in what matters most."
Adding a Voice Sample
Step 1: Record the Sample
# Recommended: Use Audacity, Voice Memos (macOS), or Windows Voice Recorder
# Export as WAV, 22kHz or 44.1kHz, mono
{"voices":{"<name>":{"description":"Brief description of the voice character","audioFile":"voices/<name>-sample.wav","duration":"10s","sampleRate":"22050","language":"en-US","preferredModel":"chatterbox-turbo"}}}
Step 4: Test the Clone
importReplicatefrom"replicate";
const replicate = newReplicate();
const output = await replicate.run("resemble-ai/chatterbox-turbo", {
input: {
text: "Testing the voice clone. This should sound like the reference sample.",
audio_prompt: fs.readFileSync("voices/<name>-sample.wav"),
},
});
console.log("Generated audio:", output);