Music Generation

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

Using provider tokens may incur account charges or expose API access if secrets are pasted into chat or stored insecurely.

Why it was flagged

The skill documents use of a provider API token for Replicate. This is expected for the stated purpose, but it gives access to a paid third-party service and is not declared in the registry credential metadata.

Skill content
export REPLICATE_API_TOKEN="r8_xxx"
Recommendation

Use only your own provider keys, avoid sharing secrets in prompts, and check provider billing and permissions before use.

What this means

Running setup commands installs third-party packages on the user's machine, which can affect the local Python environment.

Why it was flagged

The documentation includes optional package installation for local music generation. This is purpose-aligned and not automatic, but it still asks the user to install external code.

Skill content
pip install audiocraft
Recommendation

Run setup commands only in a trusted virtual environment and verify package sources before installing.

What this means

Prompts, lyrics, or uploaded reference audio could be sent to third-party services under their terms and retention policies.

Why it was flagged

One provider example uploads a local audio file to an external API. This is aligned with melody-conditioned music generation, but users should understand that local audio may leave their device.

Skill content
"input_audio": open("melody.wav", "rb")
Recommendation

Only upload audio or lyrics you are comfortable sharing with the selected provider, and review provider privacy and licensing terms.

What this means

Unofficial APIs may have different security, privacy, pricing, reliability, or terms-of-service implications than the original provider.

Why it was flagged

The Suno provider guide explicitly points to unofficial third-party API wrappers. This is disclosed and relevant to the music generation purpose, but it introduces extra trust and provenance considerations.

Skill content
**Note:** No official public API. Third-party wrappers available:
Recommendation

Prefer official provider interfaces when available, and carefully vet any unofficial API service before sending prompts, lyrics, files, or API keys.