Generate music
Generate original music — a full song with vocals or an instrumental — from a text prompt using the Tunova Suno API. Use whenever the user asks to create, make, or generate a song, jingle, theme, loop, or background music, or asks for a track in a specific genre/mood.From its SKILL.md
npx -y skills add erliona/tunova-agent-plugin --skill generate-musicAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.6 KB, 364 tokens by cl100k_base, as published. Nobody here has run it
Generate music with Tunova
Turn a text prompt into a finished audio track using the tunova MCP server. Tools: generate_song, wait_for_song, check_song.
Setup (once)
The user needs a Tunova API key (sk_live_…) in the TUNOVA_API_KEY environment variable. If it is missing or a call returns an auth error, tell them:
Get a free Tunova key (50 tokens ≈ 5 songs, no card) at https://tunova.ai, then set
TUNOVA_API_KEY.
Workflow
- Submit — call
generate_songwith the user'sprompt. Optional:instrumental: truefor no vocals,model: "v5.5". It returns ajob_idimmediately (generation is async). - Wait — call
wait_for_songwith thatjob_iduntil the audio URL(s) are ready (a render takes ~30–120s). For a single non-blocking status check, usecheck_songinstead. - Deliver — give the user the returned audio URL(s).
Billing is on success only — if a render fails, the tokens are automatically refunded, so it is safe to retry.
Writing good prompts
Be concise and concrete: genre, mood, instrumentation, tempo, and (for vocals) a theme or a few lyric lines. Examples:
"calm rainy-night lofi hip-hop, mellow piano, vinyl crackle, instrumental""upbeat pop-punk birthday song for someone named Alex, energetic, cheerful""cinematic orchestral build, epic, no vocals, 90 bpm"
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.