使用 Coqui XTTS v2 克隆任何语音并生成语音。超级简单 - 提供语音样本(6-30 秒 WAV)和文本,获取克隆语音音频。支持 14 种以上语言。当用户想要 (1) 克隆自己的声音或其他人的声音,(2) 生成听起来像特定人的语音,(3
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install clonev或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install clonev⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/clonev/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: clonev description: Clone any voice and generate speech using Coqui XTTS v2. SUPER SIMPLE - provide a voice sample (6-30 sec WAV) and text, get cloned voice audio. Supports 14+ languages. Use when the user wants to (1) Clone their voice or someone else's voice, (2) Generate speech that sounds like a specific person, (3) Create personalized voice messages, (4) Multi-lingual voice cloning (speak any language with cloned voice). ---
DO NOT try to use Docker containers directly. DO NOT try to interact with coqui-xtts container - it is broken and restarting. DO NOT try to use APIs or servers.
ONLY USE THE SCRIPT: scripts/clonev.sh
The script handles everything automatically. Just call it with text, voice sample, and language.
---
Clones any voice from a short audio sample and generates new speech in that voice.
Input:
Output: OGG voice file (cloned voice speaking the text)
Works with: Any voice! Yours, a celebrity, a character, etc.
---
$(scripts/clonev.sh "Your text here" /path/to/voice_sample.wav language)
That's it! Nothing else needed.
---
en)VOICE_FILE=$(scripts/clonev.sh "TEXT_HERE" "/path/to/sample.wav" LANGUAGE)
The variable $VOICE_FILE now contains the path to the generated OGG file.
---
# Generate cloned voice
VOICE=$(/home/bernie/clawd/skills/clonev/scripts/clonev.sh "Hello, this is my cloned voice!" "/mnt/c/TEMP/Recording 25.wav" en)
# Send to Telegram (as voice message)
message action=send channel=telegram asVoice=true filePath="$VOICE"
# Generate Czech voice
VOICE=$(/home/bernie/clawd/skills/clonev/scripts/clonev.sh "Ahoj, tohle je můj hlas" "/mnt/c/TEMP/Recording 25.wav" cs)
# Send
message action=send channel=telegram asVoice=true filePath="$VOICE"
#!/bin/bash
# Generate voice
VOICE=$(/home/bernie/clawd/skills/clonev/scripts/clonev.sh "Task completed!" "/path/to/sample.wav" en)
# Verify file was created
if [ -f "$VOICE" ]; then
echo "Success! Voice file: $VOICE"
ls -lh "$VOICE"
else
echo "Error: Voice file not created"
fi
---
| Code | Language | Example Usage | |------|----------|---------------| | en | English | scripts/clonev.sh "Hello" sample.wav en | | cs | Czech | scripts/clonev.sh "Ahoj" sample.wav cs | | de | German | scripts/clonev.sh "Hallo" sample.wav de | | fr | French | scripts/clonev.sh "Bonjour" sample.wav fr | | es | Spanish | scripts/clonev.sh "Hola" sample.wav es |
Full list: en, cs, de, fr, es, it, pl, pt, tr, ru, nl, ar, zh, ja, hu, ko
---
Good samples:
Bad samples:
---
/mnt/c/TEMP/Docker-containers/coqui-tts/models-xtts/---
Make sure you're in the skill directory or use full path:
/home/bernie/clawd/skills/clonev/scripts/clonev.sh "text" sample.wav en
/)ls -la /path/to/sample.wavThe model should auto-download. If not:
cd /mnt/c/TEMP/Docker-containers/coqui-tts
docker run --rm --entrypoint "" \
-v $(pwd)/models-xtts:/root/.local/share/tts \
ghcr.io/coqui-ai/tts:latest \
python3 -c "from TTS.api import TTS; TTS('tts_models/multilingual/multi-dataset/xtts_v2')"
---
USER: "Clone my voice and say 'hello'"
→ Get: sample path, text="hello", language="en"
→ Run: VOICE=$(/home/bernie/clawd/skills/clonev/scripts/clonev.sh "hello" "/path/to/sample.wav" en)
→ Result: $VOICE contains path to OGG file
→ Send: message action=send channel=telegram asVoice=true filePath="$VOICE"
USER: "Make me speak Czech"
→ Get: sample path, text="Ahoj", language="cs"
→ Run: VOICE=$(/home/bernie/clawd/skills/clonev/scripts/clonev.sh "Ahoj" "/path/to/sample.wav" cs)
→ Send: message action=send channel=telegram asVoice=true filePath="$VOICE"
---
Generated files are saved to:
/mnt/c/TEMP/Docker-containers/coqui-tts/output/clonev_output.ogg
The script returns this path, so you can use it directly.
---
scripts/clonev.shcoqui-xtts containerSimple. Just use the script.
---
Clone any voice. Speak any language. Just use the script.
安装 克洛涅夫 后,可以对 AI 说这些话来触发它
Help me get started with Clonev
Explains what Clonev does, walks through the setup, and runs a quick demo based on your current project
Use Clonev to clone any voice and generate speech using Coqui XTTS v2
Invokes Clonev with the right parameters and returns the result directly in the conversation
What can I do with Clonev in my design & creative workflow?
Lists the top use cases for Clonev, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/clonev/ 目录(个人级,所有项目可用),或 .claude/skills/clonev/(项目级)。重启 AI 客户端后,用 /clonev 主动调用,或让 AI 根据上下文自动发现并使用。
克洛涅夫 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
克洛涅夫 可免费安装使用。请查阅仓库了解许可证信息。
使用 Coqui XTTS v2 克隆任何语音并生成语音。超级简单 - 提供语音样本(6-30 秒 WAV)和文本,获取克隆语音音频。支持 14 种以上语言。当用户想要 (1) 克隆自己的声音或其他人的声音,(2) 生成听起来像特定人的语音,(3
克洛涅夫 属于「Design & Creative」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my design & creative tasks using Clonev
Identifies repetitive steps in your workflow and sets up Clonev to handle them automatically