Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

clone-wizard克隆向导

Agent Skill

clone-wizard 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,495

周安装

279

GitHub Stars

公开资料未说明

下载量

2,277
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clone-wizard(克隆向导)
来源仓库:https://github.com/scikkk/clone-wizard
安装命令:
openclaw skills install clone-wizard
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clone-wizard

简介

clone-wizard 提供引导式语音克隆工作流程,帮助用户克隆声音或创建自定义声音。

  • 适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。
  • 通过 clawhub 安装,结合来源仓库和 README 核验具体用法。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
senseaudio-clone-wizard
description
Guided voice cloning workflow — from recording tips to first playback. Use when users want to clone their voice, create a custom voice, or ask "怎么克隆声音", "我想用自己的声音合成", "音色克隆怎么做". Walks users through recording requirements, checks audio quality before they upload, guides them to the platform for cloning, then generates a preview with their new voice.
metadata
openclaw
requires
env
bins
primaryEnv
SENSEAUDIO_API_KEY
homepage
https://senseaudio.cn
compatibility
required_credentials
description
API key from https://senseaudio.cn/platform/api-key
env_var
SENSEAUDIO_API_KEY

SenseAudio Clone Wizard

A guided experience for voice cloning. The API itself is simple — the hard part is getting a clean recording. This skill handles that.

Note: SenseAudio does not support cloning via API. The actual cloning happens on the platform at https://senseaudio.cn. This skill guides the user through the full process and handles the steps that can be automated.

Phase 1: Before Recording

When a user says they want to clone their voice, show this guide before they record anything:


录音前请注意:

  • 环境:找一个安静的房间,关掉空调、风扇、电视
  • 距离:嘴巴距离麦克风约 20cm,不要太近(会爆音)也不要太远(声音发虚)
  • 时长:3–30 秒,朗读一段自然的文字效果最好
  • 格式:MP3、WAV 或 AAC,文件不超过 50MB
  • 内容:朗读一段话,语速自然,避免长时间停顿

推荐朗读内容(约 15 秒):

"大家好,我是 [你的名字]。今天天气不错,阳光明媚。我喜欢在这样的日子里出去走走,感受大自然的美好。希望每一天都能这样轻松愉快。"

录好后把文件发给我,我来帮你检测质量。


Phase 2: Audio Quality Check

When the user uploads an audio file, run the quality check:

RESULT=$(curl -s -X POST https://api.senseaudio.cn/v1/audio/analysis \
  -H "Authorization: Bearer $SENSEAUDIO_API_KEY" \
  -F "model=sense-asr-check" \
  -F "file=@<AUDIO_FILE>")

Parse the response and translate it into plain language:

Noise score interpretation:

noise_scoreWhat to tell the user
0.0 – 0.2录音质量很好,可以直接提交克隆
0.2 – 0.4录音质量不错,有轻微噪声,克隆效果可能略有影响,建议在条件允许时重录
0.4 – 0.6录音噪声较明显,建议重录以获得更好的克隆效果
0.6 – 1.0录音噪声严重,强烈建议重录,否则克隆出的音色可能失真

Noise type translations:

noise_types value告诉用户
background_noise背景噪声(周围环境声)
hum嗡嗡声(可能是空调、电器)
static静电杂音(可能是线材或设备问题)
wind风噪(话筒离嘴太近或有风)
echo / reverb回声/混响(房间太空旷,建议换小房间或靠近软装)

Example diagnosis output:

你的录音检测结果:
- 时长:14.3 秒 ✓
- 噪声评分:0.52(中等)
- 检测到:嗡嗡声(可能是空调)

建议:关掉空调后重新录一段。如果条件不允许,可以继续提交,
但克隆出的音色可能带有轻微底噪。要继续还是重录?

If has_noise is false or score < 0.2, skip the warning and proceed directly to Phase 3.

Phase 3: Platform Cloning

The cloning itself must be done on the SenseAudio platform — the API does not support direct cloning requests.

Guide the user:


录音质量通过!接下来去平台完成克隆:

  1. 打开 https://senseaudio.cn,登录你的账号
  2. 进入「音色克隆」页面
  3. 点击「上传音频」,选择你刚才的录音文件
  4. 系统会自动训练,通常几秒内完成
  5. 训练完成后,在「我的音色」中找到新音色,复制它的 voice_id
  6. 把 voice_id 发给我,我来帮你生成第一段试听

注意槽位: 每个账号有有限的克隆槽位。如果槽位已满,需要先删除旧音色才能克隆新的。


Phase 4: First Playback

Once the user provides their voice_id, synthesize a welcome message so they can hear their AI voice for the first time:

Default preview text (warm and personal):

"你好!这是我的 AI 声音。从今天起,我可以用这个声音说任何我想说的话了。"
curl -s -X POST https://api.senseaudio.cn/v1/t2a_v2 \
  -H "Authorization: Bearer $SENSEAUDIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d "{
    \"model\": \"SenseAudio-TTS-1.0\",
    \"text\": \"你好!这是我的 AI 声音。从今天起,我可以用这个声音说任何我想说的话了。\",
    \"stream\": false,
    \"voice_setting\": { \"voice_id\": \"<VOICE_ID>\" },
    \"audio_setting\": { \"format\": \"mp3\" }
  }" -o preview.json

jq -r '.data.audio' preview.json | xxd -r -p > my_voice_preview.mp3

After generating: tell the user the file is ready, and mention they can now use this voice_id with any SenseAudio TTS feature — including the senseaudio-tts-quick skill for quick synthesis or senseaudio-polyglot-tts for precise pronunciation control.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.09%
按下载量换算1,778

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills