Voice Meme Maker
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.
Generating audio may consume the user's SenseAudio API quota or credits.
The skill authenticates to SenseAudio with a bearer API key, which is expected for a TTS integration and is declared as a prerequisite.
API_KEY = os.environ["SENSEAUDIO_API_KEY"] ... "Authorization": f"Bearer {API_KEY}"Use a dedicated SenseAudio API key with appropriate quota limits, and revoke or rotate it if you stop using the skill.
Anything provided as meme text may be processed by SenseAudio.
User-provided meme text is sent to the external SenseAudio TTS API so it can return generated audio.
"text": text ... requests.post("https://api.senseaudio.cn/v1/t2a_v2", ... json=payload)Avoid sending confidential or personal content unless you are comfortable with SenseAudio processing it.
Installing the dependency adds code from the Python package ecosystem to the environment.
The skill asks the user to install the Python `requests` package as a prerequisite; this is common and purpose-aligned, but it is still an external dependency.
pip install requests
Install dependencies from a trusted Python package index in the intended environment, or use an environment where `requests` is already available.
