vociemaster
Analysis
VoiceMaster appears coherent for generating AI voiceovers, with expected API-key, external SenseAudio API, and local audio-tool use that users should understand before installing.
Findings (4)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
requires:
bins:
- curl
- jq
- ffmpeg
...
全部片段生成完成后,优先使用 `helper.py concat` 合并为一个 `mp3`。The skill relies on local command-line tools and a helper to call the API and merge audio segments; this is central to the stated voiceover workflow.
Source: unknown Homepage: none
The skill does not provide a public source or homepage, so independent provenance is limited even though the included artifacts are coherent.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
先检查环境变量 `SENSEAUDIO_API_KEY`。如果已经存在,直接使用;如果不存在,再提示用户提供 API Key 或先在终端设置环境变量。不要把密钥写进 `SKILL.md`、脚本源码或提交记录。
The skill requires a SenseAudio API key and uses it for the intended TTS provider; it also tells the user not to store the key in files or source.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
curl -sS "https://api.senseaudio.cn/v1/t2a_v2" \ -H "Authorization: Bearer $SENSEAUDIO_API_KEY" \ -H "Content-Type: application/json" \ --data-binary @-
The request sends the script text and API authorization to the SenseAudio endpoint, which is expected for cloud TTS but is still an external data flow.
