MOSS-TTS Voice
Analysis
This skill appears to do what it says—generate and clone MOSS TTS audio—but it requires an API key and sends voice/audio data to MOSS servers.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
parser.add_argument("--reference_audio", default=None, help="参考音频路径(实时克隆)"); with open(args.reference_audio, "rb") as f: payload["reference_audio"] = base64.b64encode(f.read()).decode("utf-8")The reference-audio argument is a local file path that is read and sent in the API request; this is expected for cloning but depends on the user or agent selecting the intended audio file.
requests>=2.28.0
The Python dependency is specified with a lower bound rather than an exact pinned version, so installs may resolve to different future versions.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
echo $MOSS_API_KEY # 应该显示: sk-xxx...
The skill relies on a MOSS API key and the troubleshooting guide suggests displaying it, which is useful locally but can expose the credential if terminal output is shared.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
克隆音色:上传的音频会存储在 MOSS Studio 服务器; 实时克隆:每次请求都会上传音频数据到 MOSS API
The skill explicitly sends reference voice audio to an external provider and states cloned voice audio is stored by MOSS Studio.
