Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Generate full songs and instrumental tracks with ElevenLabs Music on RunComfy via the `runcomfy` CLI. ElevenLabs Music turns a style description plus structured lyrics into studio-quality 44.1 kHz stereo audio — 5 seconds to 5 minutes — with section-level control (Intro / Verse / Chorus / Bridge), multilingual vocals, and commercial-friendly output. Generate a backing track, a full vocal song, a jingle, a podcast intro, a game loop, or an instrumental bed. Calls `runcomfy run elevenlabs/elevenla
.claude/skills/aiskillstore-elevenlabs-music-generation/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 62% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -44% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 14% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -43% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 94% | 0% |
Generate full songs and instrumental tracks from a text description — studio-quality 44.1 kHz stereo, 5 seconds to 5 minutes, with section-level structure control. ElevenLabs Music on the RunComfy Model API, called through the runcomfy CLI.
runcomfy.com · ElevenLabs Music model · CLI docs
bashnpx skills add agentspace-so/runcomfy-agent-skills --skill elevenlabs-music-generation -g
bash# 1. Install (one of — see runcomfy-cli skill for details) npm i -g @runcomfy/cli # global install npx -y @runcomfy/cli --version # zero-install # 2. Sign in runcomfy login # or in CI: export RUNCOMFY_TOKEN=<token> # 3. Generate music runcomfy run elevenlabs/elevenlabs/music-generation \ --input '{"prompt": "..."}' \ --output-dir ./out
CLI deep dive: runcomfy-cli skill.
ElevenLabs Music's strength is structured songs with real vocals — it takes a style brief plus lyrics with section markers and returns a coherent, mixed track. Pick it for:
force_instrumental: true for background music, podcast intros, game loopsIf the user just wants ambient sound or a one-off SFX (thunder, footsteps), that's a sound-effects task, not music — ElevenLabs Music is for songs and tracks.
Model: elevenlabs/elevenlabs/music-generation
| Field | Type | Required | Default | Notes | |---|---|---|---|---| | prompt | string | yes | — | Style description and lyrics with section markers. See prompting tips | | music_length_ms | int | no | 40000 | Output duration in ms. 5000–300000 (5 s – 5 min) | | force_instrumental | bool | no | false | true = instrumental only, no vocals | | output_format | string | no | mp3_standard | mp3_standard (default), or WAV — see the model page API tab for the full format list |
Output: 44.1 kHz stereo audio. The result JSON contains the generated audio URL — the CLI downloads it into --output-dir.
Pricing: ~$0.0083 per second of generated audio (30 s ≈ $0.25, 60 s ≈ $0.50, 5 min ≈ $2.49). Cost scales with music_length_ms, so draft short and finalize long.
Full vocal song with structure:
bashruncomfy run elevenlabs/elevenlabs/music-generation \ --input '{ "prompt": "Upbeat indie-pop anthem, bright electric guitars, driving drums, 120 BPM, female lead vocal. [Intro 8 bars] instrumental build. [Verse] Chalk on the palms, laces double-knotted, morning on the ridge. [Chorus] We rise, we strike, we never fade out. [Bridge] soft breakdown, just piano and voice. [Outro] full band, fade.", "music_length_ms": 60000 }' \ --output-dir ./out
Instrumental background bed:
bashruncomfy run elevenlabs/elevenlabs/music-generation \ --input '{ "prompt": "Calm lo-fi hip-hop instrumental for a study playlist. Warm Rhodes piano, soft vinyl crackle, mellow boom-bap drums, 75 BPM. No vocals. Consistent loop-friendly groove throughout.", "music_length_ms": 90000, "force_instrumental": true }' \ --output-dir ./out
Short brand jingle:
bashruncomfy run elevenlabs/elevenlabs/music-generation \ --input '{ "prompt": "5-second cheerful brand stinger, bright marimba and a single uplifting chord resolve, no vocals.", "music_length_ms": 5000, "force_instrumental": true }' \ --output-dir ./out
ElevenLabs Music reads one prompt field that carries both the style brief and the lyrics. Structure it well:
"Upbeat indie-pop anthem, bright electric guitars, 120 BPM, female lead vocal."[Intro], [Verse], [Chorus], [Bridge], [Outro]. Add approximate durations or bar counts — [Intro 8 bars], [Verse 16 bars]."electric guitar carries the chorus, drums sit back in the verse."force_instrumental: true AND say "no vocals" in the prompt — belt and suspenders.[Verse] (sung in Brazilian Portuguese) ...).music_length_ms: 35000) before paying for a 5-minute render.[Intro]/[Verse]/[Chorus] structure, music_length_ms matched to the video lengthforce_instrumental: true, 10–20 s, "loop-friendly, clean ending"force_instrumental: true, describe "seamless loop", 60–120 s, consistent groovemusic_length_ms: 35000 to lock genre/tempo/structure → final render at full lengthprompt field carries everything (style + lyrics). There is no separate "lyrics" parameter.music_length_ms 5000–300000). For longer pieces, generate sections and stitch externally.force_instrumental is the only vocal toggle — you can't request specific voice identities or clone a singer through this endpoint.| code | meaning | |---|---| | 0 | success | | 64 | bad CLI args | | 65 | bad input JSON / schema mismatch | | 69 | upstream 5xx | | 75 | retryable: timeout / 429 | | 77 | not signed in or token rejected |
Full reference: docs.runcomfy.com/cli/troubleshooting.
The skill invokes runcomfy run elevenlabs/elevenlabs/music-generation with the JSON body. The CLI POSTs to the RunComfy Model API, polls request status, fetches the result, and downloads the generated audio file into --output-dir. Ctrl-C cancels the remote request before exit.
npm i -g @runcomfy/cli or npx -y @runcomfy/cli. Agents must not pipe an arbitrary remote install script into a shell on the user's behalf — if the operator wants the curl-pipe path documented at docs.runcomfy.com/cli/install, they should review the script first.runcomfy login writes the API token to ~/.config/runcomfy/token.json with mode 0600. Set RUNCOMFY_TOKEN env var to bypass the file in CI / containers. Never echo the token into a prompt, log it, or check it in.--input. The CLI does not shell-expand prompt content; it transmits the JSON body directly to the Model API over HTTPS. No shell-injection surface from prompt content, even with backticks, quotes, or $(...) patterns.model-api.runcomfy.net (request submission) and *.runcomfy.net / *.runcomfy.com (download whitelist for generated audio). No telemetry, no callbacks.runcomfy <subcommand> — npm / npx lines are one-time operator setup, not commands the skill executes per call.runcomfy-cli — the underlying CLI, schema discovery, polling modes, scriptingai-video-generation — pair a generated track with a generated videoai-avatar-video — talking-head video (different audio path — speech, not music)| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 13,243 | 6,585 | -50% | 1 | 1 | 0% | 2,547 | 4,120 | +62% | 0 | 0 | — |
case-02 | fail→pass | 28,046 | 2,920 | -90% | 1 | 1 | 0% | 6,194 | 3,469 | -44% | 0 | 0 | — |
case-03 | fail→pass | 17,276 | 4,268 | -75% | 1 | 1 | 0% | 3,157 | 3,614 | +14% | 0 | 0 | — |
case-04 | fail→pass | 30,602 | 2,994 | -90% | 1 | 1 | 0% | 5,927 | 3,372 | -43% | 0 | 0 | — |
case-05 | fail→pass | 12,244 | 6,212 | -49% | 1 | 1 | 0% | 2,062 | 3,993 | +94% | 0 | 0 | — |
case-06 | fail→pass | 30,438 | 5,482 | -82% | 1 | 1 | 0% | 6,185 | 3,774 | -39% | 0 | 0 | — |
case-07 | fail→pass | 16,016 | 7,427 | -54% | 1 | 1 | 0% | 2,577 | 4,147 | +61% | 0 | 0 | — |
case-08 | fail→pass | 37,232 | 3,549 | -90% | 1 | 1 | 0% | 6,172 | 3,477 | -44% | 0 | 0 | — |
case-09 | pass→pass | 13,098 | 5,033 | -62% | 1 | 1 | 0% | 2,144 | 3,847 | +79% | 0 | 0 | — |
case-10 | fail→pass | 32,374 | 7,580 | -77% | 1 | 1 | 0% | 6,165 | 3,363 | -45% | 0 | 0 | — |
case-11 | fail→pass | 29,323 | 4,086 | -86% | 1 | 1 | 0% | 6,165 | 3,646 | -41% | 0 | 0 | — |
case-12 | fail→pass | 21,744 | 2,211 | -90% | 1 | 1 | 0% | 4,501 | 3,266 | -27% | 0 | 0 | — |
case-13 | fail→pass | 9,987 | 5,423 | -46% | 1 | 1 | 0% | 1,866 | 3,870 | +107% | 0 | 0 | — |
case-14 | fail→pass | 16,592 | 6,048 | -64% | 1 | 1 | 0% | 3,031 | 3,970 | +31% | 0 | 0 | — |
case-15 | fail→pass | 11,554 | 4,761 | -59% | 1 | 1 | 0% | 1,977 | 3,690 | +87% | 0 | 0 | — |
case-16 | pass→pass | 8,770 | 3,403 | -61% | 1 | 1 | 0% | 1,329 | 3,443 | +159% | 0 | 0 | — |
case-17 | pass→pass | 9,897 | 2,413 | -76% | 1 | 1 | 0% | 1,559 | 3,212 | +106% | 0 | 0 | — |
case-18 | fail→pass | 8,834 | 3,328 | -62% | 1 | 1 | 0% | 1,441 | 3,424 | +138% | 0 | 0 | — |
case-19 | fail→pass | 12,542 | 5,348 | -57% | 1 | 1 | 0% | 2,090 | 3,686 | +76% | 0 | 0 | — |
case-20 | fail→pass | 10,764 | 4,714 | -56% | 1 | 1 | 0% | 1,503 | 3,643 | +142% | 0 | 0 | — |
case-21 | pass→pass | 9,413 | 5,199 | -45% | 1 | 1 | 0% | 1,575 | 3,777 | +140% | 0 | 0 | — |
case-22 | fail→pass | 13,998 | 4,781 | -66% | 1 | 1 | 0% | 2,120 | 3,607 | +70% | 0 | 0 | — |
case-23 | fail→pass | 32,061 | 9,048 | -72% | 1 | 1 | 0% | 6,168 | 4,411 | -28% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +83 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.