Coze Tts

PassAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward Coze text-to-speech wrapper, but it sends your supplied text to Coze using your API key and writes an audio file locally.

Before installing, confirm you are comfortable sending the text you convert to Coze, use a limited-purpose COZE_API_KEY, and save audio to a new non-important output path.

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

Requests may consume your Coze quota and are made under the permissions of the API key you provide.

Why it was flagged

The script uses the user's Coze API key as a bearer token to call the Coze TTS service. This is expected for the skill's purpose, but it is still account-level credential use.

Skill content
-H "Authorization: Bearer $COZE_API_KEY"
Recommendation

Use a dedicated Coze API key with only the permissions needed for TTS, and rotate it if you no longer trust the environment where it was set.

What this means

If an existing path is chosen as the output file, it could be overwritten or deleted during a failed request.

Why it was flagged

The user-selected output path is passed to curl for writing, and the script removes that path if the API returns an error. File output is central to a TTS skill, but users should avoid pointing it at existing or important files.

Skill content
OUTPUT_FILE="$2" ... -o "$OUTPUT_FILE" ... rm -f "$OUTPUT_FILE"
Recommendation

Save to a new, dedicated audio filename or directory, and avoid using paths that already contain important files.

What this means

You have less information to independently verify who maintains this skill or where updates come from.

Why it was flagged

The package provenance is limited. This does not contradict the included source, but it gives users less external context for verifying the publisher or project origin.

Skill content
Source: unknown; Homepage: none
Recommendation

Review the included script before installing and prefer a trusted publisher or repository when available.