voice-minimax

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

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

If configured incorrectly, generated audio could be sent through the wrong Feishu bot or to the wrong Feishu user.

Why it was flagged

The skill requires a provider API key and Feishu bot authority to send to a configured recipient. This is expected for the stated purpose, but it is sensitive delegated access and the default recipient should be changed or confirmed.

Skill content
`你的MiniMax API Key` → 你的 MiniMax API Key; `飞书用户ID` → 飞书用户 open_id(默认:ou_c1e599d5838a3f2ab8c4dbc40b709cf2) ... lark-cli --as bot im +messages-send
Recommendation

Use least-privilege Feishu bot credentials, store the MiniMax key in a secret or environment variable rather than inline shell history, and verify the recipient open_id before sending.

What this means

Running the workflow will create or overwrite local audio files and send a message via Feishu.

Why it was flagged

The skill documents shell-based API calls, audio conversion, file writes, and message sending. These tools are central to the voice-generation workflow, but they have real side effects.

Skill content
python3 -c "... urllib.request.urlopen(req) ..." ... ffmpeg -i /tmp/voice.mp3 ... /tmp/voice.opus -y ... lark-cli --as bot im +messages-send
Recommendation

Run only after checking the text, output path, and recipient; consider using unique temporary filenames to avoid overwriting existing files.

What this means

The skill may fail or behave unexpectedly if python3, ffmpeg, lark-cli, MiniMax credentials, or Feishu bot configuration are not already available.

Why it was flagged

The registry metadata does not declare the local tools or credential expectations that SKILL.md describes. This appears to be an incomplete packaging/metadata declaration rather than hidden code.

Skill content
Required binaries (all must exist): none ... Env var declarations: none ... Primary credential: none
Recommendation

Declare required binaries and credentials in metadata, or document setup steps clearly before installation.

What this means

Text and generated audio may be processed by MiniMax and delivered through Feishu.

Why it was flagged

The user-provided text is sent to MiniMax for synthesis, and generated audio is sent to Feishu. These external transfers are disclosed and purpose-aligned.

Skill content
'https://api.minimaxi.com/v1/t2a_v2' ... lark-cli --as bot im +messages-send --msg-type audio --audio ./voice.opus
Recommendation

Avoid sending sensitive or regulated text unless MiniMax and Feishu use is approved for that data.