chinese-voice-skill

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward Chinese text-to-speech skill, with minor points to notice around external TTS processing and package installation provenance.

This skill looks safe for its stated purpose. Before installing, verify the edge-tts package source/version if you use the pip setup command, and avoid sending private or sensitive text to TTS if you are not comfortable with Microsoft processing it.

Findings (3)

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.

What this means

If the user follows this setup step, a package from an external mirror is installed into the user Python environment.

Why it was flagged

The skill documents installing an unpinned Python package from a third-party PyPI mirror. This is user-directed and aligned with the TTS purpose, but users should trust the package source before running it.

Skill content
pip install --user edge-tts -i https://mirrors.aliyun.com/pypi/simple/
Recommendation

Install edge-tts from a trusted package index, consider pinning a known-good version, and avoid running the install command unless you trust the source.

What this means

A user may want to confirm they are reviewing and installing the exact skill version they expect.

Why it was flagged

The review metadata lists the registry version as 1.0.4, while the included _meta.json and origin data indicate 1.0.2. This is a provenance/version consistency issue to verify, not evidence of malicious behavior.

Skill content
"version": "1.0.2"
Recommendation

Check the registry package version and included metadata before installing or updating.

What this means

Text converted to speech may leave the local environment and be handled by Microsoft Edge TTS infrastructure.

Why it was flagged

The skill discloses that Edge TTS needs access to Microsoft servers, meaning text submitted for speech synthesis may be processed by an external provider.

Skill content
edge-tts 需要访问微软服务器
Recommendation

Do not synthesize confidential or sensitive text unless that external processing is acceptable for your use case.