Elevenlabs Music
Analysis
The skill appears to do what it says—generate music through ElevenLabs—but users should note it uses their ElevenLabs API key and paid quota, pulls Python packages with uv, and includes an off-platform paid-service advertisement.
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.
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.
# dependencies = [ # "elevenlabs>=1.0.0", # "python-dotenv", # ]
The script relies on uv to resolve runtime dependencies, and the package versions are not pinned exactly. This is common for small utility scripts but means future dependency updates could change behavior.
## 💰 付费服务 ... | 短视频 BGM | ¥300/首 | 30 秒定制音乐 | ... **联系**: 微信/Telegram 私信,备注"音乐定制"
The skill documentation includes a separate off-platform paid custom-music advertisement. It is visible and not tied to code execution, but it is not necessary for using the ElevenLabs API script.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
load_dotenv()
...
api_key = os.getenv("ELEVENLABS_API_KEY")
...
client = ElevenLabs(api_key=api_key)The script reads the user's ElevenLabs API key and uses it to call the ElevenLabs client. This is expected for the stated purpose, but it gives the skill access to a paid account and may consume quota or credits.
