Pywayne Tts

PassAudited by ClawScan on May 1, 2026.

Overview

This looks like a straightforward text-to-speech skill, with the main cautions being external TTS service use and undeclared local dependencies.

This skill appears benign and purpose-aligned for text-to-speech conversion. Before installing or using it, confirm that any pywayne, gtts, and ffmpeg dependencies come from trusted sources, and avoid sending sensitive text through gTTS unless you accept third-party processing.

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

You may need to install external tools or Python packages that are not bundled or pinned by this skill.

Why it was flagged

The skill references external Python/library and system-tool dependencies, while the package has no install spec and the registry metadata declares no required binaries.

Skill content
from pywayne.tts import text_to_speech_output_opus ... Requirements ... ffmpeg ... gtts
Recommendation

Install pywayne, gtts, and ffmpeg only from trusted package sources, and verify the package names and versions before use.

What this means

Using the skill may run local audio conversion commands and create audio files on your machine.

Why it was flagged

The skill describes invoking local system tools for speech generation and audio conversion, which is expected for this TTS purpose.

Skill content
On macOS, prefers native 'say' command ... Uses ffmpeg to convert audio
Recommendation

Use it with intended output paths only, and ensure ffmpeg and any TTS tools are installed from trusted sources.

What this means

Text you convert may be sent to a third-party TTS provider when gTTS is used.

Why it was flagged

The skill discloses that text-to-speech conversion may use an external Google TTS service, meaning input text can leave the local device.

Skill content
On other platforms, uses Google TTS (gTTS) service ... Requires network connection for gTTS service
Recommendation

Avoid using gTTS for confidential or regulated text unless you are comfortable with that provider handling the content; prefer local TTS where possible.