← 返回 Skills 市场
cinience

Alicloud Ai Audio Tts Voice Clone

作者 cinience · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ⚠ suspicious
943
总下载
1
收藏
4
当前安装
3
版本数
在 OpenClaw 中安装
/install alicloud-ai-audio-tts-voice-clone
功能描述
Voice cloning workflows with Alibaba Cloud Model Studio Qwen TTS VC models. Use when creating cloned voices from sample audio and synthesizing text with clon...
使用说明 (SKILL.md)

Category: provider

Model Studio Qwen TTS Voice Clone

Use voice cloning models to replicate timbre from enrollment audio samples.

Critical model names

Use one of these exact model strings:

  • qwen3-tts-vc-2026-01-22
  • qwen3-tts-vc-realtime-2026-01-15

Prerequisites

  • Install SDK in a virtual environment:
python3 -m venv .venv
. .venv/bin/activate
python -m pip install dashscope
  • Set DASHSCOPE_API_KEY in your environment, or add dashscope_api_key to ~/.alibabacloud/credentials.

Normalized interface (tts.voice_clone)

Request

  • text (string, required)
  • voice_sample (string | bytes, required) enrollment sample
  • voice_name (string, optional)
  • stream (bool, optional)

Response

  • audio_url (string) or streaming PCM chunks
  • voice_id (string)
  • request_id (string)

Operational guidance

  • Use clean speech samples with low background noise.
  • Respect consent and policy requirements for cloned voices.
  • Persist generated voice_id and reuse for future synthesis requests.

Local helper script

Prepare a normalized request JSON and validate response schema:

.venv/bin/python skills/ai/audio/alicloud-ai-audio-tts-voice-clone/scripts/prepare_voice_clone_request.py \
  --text "Welcome to this voice-clone demo" \
  --voice-sample "https://example.com/voice-sample.wav"

Output location

  • Default output: output/ai-audio-tts-voice-clone/audio/
  • Override base dir with OUTPUT_DIR.

Validation

mkdir -p output/alicloud-ai-audio-tts-voice-clone
for f in skills/ai/audio/alicloud-ai-audio-tts-voice-clone/scripts/*.py; do
  python3 -m py_compile "$f"
done
echo "py_compile_ok" > output/alicloud-ai-audio-tts-voice-clone/validate.txt

Pass criteria: command exits 0 and output/alicloud-ai-audio-tts-voice-clone/validate.txt is generated.

Output And Evidence

  • Save artifacts, command outputs, and API response summaries under output/alicloud-ai-audio-tts-voice-clone/.
  • Include key parameters (region/resource id/time range) in evidence files for reproducibility.

Workflow

  1. Confirm user intent, region, identifiers, and whether the operation is read-only or mutating.
  2. Run one minimal read-only query first to verify connectivity and permissions.
  3. Execute the target operation with explicit parameters and bounded scope.
  4. Verify results and save output/evidence files.

References

  • references/sources.md
安全使用建议
This skill appears to implement Alibaba Cloud Qwen TTS voice cloning, but there are a few things to check before installing: (1) The SKILL.md requires an API key (DASHSCOPE_API_KEY) or entries in ~/.alibabacloud/credentials, yet the registry metadata does not declare any required credentials — ask the publisher to add a primaryEnv and list required env vars. (2) The instructions call for pip installing 'dashscope' — verify that 'dashscope' is an official/expected SDK (check PyPI, the maintainer, and project homepage) before installing, and prefer creating an isolated virtualenv as recommended. (3) Confirm you are comfortable providing Alibaba Cloud credentials to any code that will use them and that you have consent for cloning any voice samples. (4) Optionally review the pip package source or run the helper script in a sandbox to inspect behavior. If the publisher clarifies the missing metadata and the dashscope package provenance checks out, the skill's behavior appears coherent with its stated purpose.
功能分析
Type: OpenClaw Skill Name: alicloud-ai-audio-tts-voice-clone Version: 1.0.2 The skill bundle provides a legitimate interface for Alibaba Cloud's Qwen TTS voice cloning service. It includes a helper script (scripts/prepare_voice_clone_request.py) for formatting API requests and instructions for using the official 'dashscope' SDK. No malicious behaviors, data exfiltration, or suspicious execution patterns were identified.
能力评估
Purpose & Capability
The name and description describe Alibaba Cloud Qwen TTS voice cloning and the SKILL.md instructs installing a cloud SDK and using an API key or Alibaba credentials, which is coherent for that purpose. However, the registry metadata declares no required environment variables or primary credential while the instructions explicitly require DASHSCOPE_API_KEY or ~/.alibabacloud/credentials — an inconsistency.
Instruction Scope
The SKILL.md stays within the voice-clone scope: it instructs creating a venv, installing a SDK, preparing request JSON, running a read-only connectivity check, performing the operation, and saving outputs. It does not instruct reading unrelated system files or exfiltrating data. The only access outside the skill's domain is the optional ~/.alibabacloud/credentials file (appropriate for cloud credentials).
Install Mechanism
There is no formal install spec in the registry (instruction-only), but SKILL.md requires 'python -m pip install dashscope'. Using pip is typical for Python SDKs, but the package 'dashscope' is not otherwise referenced in metadata and its provenance is unknown here — this is a moderate risk and worth verifying (is it an official Alibaba package or third-party wrapper?).
Credentials
The runtime instructions require DASHSCOPE_API_KEY or adding credentials to ~/.alibabacloud/credentials, which is appropriate for calling Alibaba Cloud APIs. However, the skill metadata lists no required env vars or primary credential, creating a missing-declaration problem. The requested secrets themselves (API key or standard Alibaba credentials) are proportional to the stated purpose, but the omission in metadata reduces transparency.
Persistence & Privilege
The skill is instruction-only, has no install spec that writes system files, does not request 'always: true', and does not declare changes to other skills or system-wide config. It asks you to persist voice_id locally (reasonable for reuse) and to save outputs under an output/ path which is expected behavior.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install alicloud-ai-audio-tts-voice-clone
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /alicloud-ai-audio-tts-voice-clone 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
batch publish from alicloud-skills on 2026-03-11
v1.0.1
sync from alicloud-skills repo
v1.0.0
Initial release of Alibaba Cloud AI voice cloning skill. - Enables voice cloning using Alibaba Cloud Model Studio Qwen TTS VC models. - Supports enrollment of voice samples and text-to-speech synthesis with cloned timbre. - Details required model names and interface for requests and responses. - Provides setup instructions, usage guidance, and helper script. - Describes output storage and key prerequisites for use.
元数据
Slug alicloud-ai-audio-tts-voice-clone
版本 1.0.2
许可证 MIT-0
累计安装 4
当前安装数 4
历史版本数 3
常见问题

Alicloud Ai Audio Tts Voice Clone 是什么?

Voice cloning workflows with Alibaba Cloud Model Studio Qwen TTS VC models. Use when creating cloned voices from sample audio and synthesizing text with clon... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 943 次。

如何安装 Alicloud Ai Audio Tts Voice Clone?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install alicloud-ai-audio-tts-voice-clone」即可一键安装,无需额外配置。

Alicloud Ai Audio Tts Voice Clone 是免费的吗?

是的,Alicloud Ai Audio Tts Voice Clone 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Alicloud Ai Audio Tts Voice Clone 支持哪些平台?

Alicloud Ai Audio Tts Voice Clone 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Alicloud Ai Audio Tts Voice Clone?

由 cinience(@cinience)开发并维护,当前版本 v1.0.2。

💬 留言讨论