Pywayne Tts

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: tts-2 Version: 0.1.0 The skill bundle describes a text-to-speech conversion tool that utilizes macOS's native 'say' command, Google TTS (gTTS) service, and ffmpeg for audio conversion. The `SKILL.md` file clearly outlines the purpose, parameters, and behavior of the functions, including expected dependencies and network requirements. There is no evidence of prompt injection attempts against the agent, data exfiltration, unauthorized access, or any other malicious intent within the provided metadata and documentation. The described functionalities (shell execution for 'say' and 'ffmpeg', network access for gTTS) are legitimate and necessary for the stated purpose.

Findings (0)

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.