Edge TTS English
Analysis
This is a straightforward text-to-speech skill, but it relies on a separately installed Edge TTS command and processes the text you provide through that TTS tool.
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.
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.
/root/.local/bin/edge-tts \ --voice "$VOICE" \ --text "$TEXT" \ --write-media "$OUTPUT"
The skill runs a local CLI with user-provided text, voice, and output path. This is expected for text-to-speech generation, but it is still command execution and file-writing behavior users should recognize.
Requires edge-tts installed via pipx. ... `/root/.local/bin/edge-tts`
The implementation relies on an external binary that is not included by the skill. This is purpose-aligned, but the installed package's provenance matters.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Generate native-quality English audio using Microsoft Edge TTS (`/root/.local/bin/edge-tts`).
The user-provided text is processed through Microsoft Edge TTS for speech synthesis. This is the skill's stated purpose, but it matters for privacy-sensitive text.
