Tomoviee Text to Sound Effects

PassAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward text-to-sound API client, but users should treat the Tomoviee API credentials and any submitted prompts as sensitive.

Before installing, confirm you trust the Tomoviee/Wondershare API provider, use revocable API credentials, avoid submitting sensitive prompt content, and install Python dependencies from a trusted source.

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

Anyone using the skill must provide API credentials, and generated requests may be associated with that Tomoviee/Wondershare account.

Why it was flagged

The client uses user-provided Tomoviee app credentials to authenticate to the provider API. This is expected for the stated purpose, but the credentials represent account authority and may consume quota or billing.

Skill content
"X-App-Key": self.app_key,
"Authorization": f"Basic {self.access_token}"
Recommendation

Use scoped or revocable API keys where available, avoid pasting secrets into shared chats or logs, and rotate credentials if they are exposed.

What this means

Sound-effect prompts, task settings, and any optional callback data may be processed by the external provider.

Why it was flagged

The skill intentionally sends prompts and task parameters to an external provider endpoint. This is disclosed and purpose-aligned, but users should understand that prompt content leaves the local environment.

Skill content
This skill sends runtime API calls only to `openapi.wondershare.cc`
Recommendation

Do not include confidential, personal, or secret information in prompts or callback parameters unless the provider account and policy are appropriate for that data.

What this means

The dependency install is not automatically run by the skill, but users who run it will depend on their Python package index and local environment.

Why it was flagged

The setup documentation asks the user to install an unpinned Python dependency. This is common and purpose-aligned for an API client, but it relies on the package source available at install time.

Skill content
pip install requests
Recommendation

Install dependencies from trusted package indexes and consider pinning or reviewing package versions in controlled environments.