文字转语音/Text to Audio
PassAudited by ClawScan on May 14, 2026.
Overview
This skill appears to do what it says—convert user-provided text to MP3—but users should know it may install an unpinned Python package and sends text to Microsoft Edge TTS cloud service.
Before installing, be comfortable with text being processed by Microsoft Edge TTS online, and run the dependency setup in a virtual environment if possible. Do not provide API keys or credentials; the reviewed files do not need them.
Findings (2)
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.
Running the setup check may modify the active Python environment and depends on the current PyPI package supply chain.
When the user runs the environment check, the script can install edge-tts from the default Python package source without a pinned version.
[sys.executable, "-m", "pip", "install", "edge-tts"]
Use a virtual environment and, if possible, install a reviewed or pinned edge-tts version before using the skill.
Text submitted for conversion may be sent to Microsoft’s TTS service for processing.
The skill discloses that audio generation relies on Microsoft’s online TTS service, so input text is not purely local.
使用微软 Edge TTS 在线服务 ... 需访问微软 TTS 云服务
Avoid converting highly sensitive, confidential, or regulated text unless you are comfortable with that cloud processing.
