Music and sound effects with Guaardvark
SkillMediaGenerate full songs with vocals or instrumentals (ACE-Step) and sound effects or ambience (Stable Audio Open) on the user's GPU through Guaardvark's Audio Foundry. Use when the user asks for a song, a beat, a jingle, background music, or a sound effect, made locally with no subscription.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Music and sound effects with Guaardvark skill
What this skill tells your AI
The instructions your AI receives, as published by guaardvark/guaardvark in .agents/skills/music/SKILL.md and read by ahel’s review.
Read setup first; needs the audio_foundry plugin. B=${GUAARDVARK_URL:-http://localhost:5000}.
ACE-Step takes ~10 GB VRAM; the orchestrator evicts other models while it runs.
A song
curl -s -X POST $B/api/audio-foundry/generate/music -H 'Content-Type: application/json' -d '{
"style_prompt": "indie folk, fingerpicked acoustic guitar, warm male vocal, 96 bpm, intimate",
"lyrics": "[verse]\nLines here\n[chorus]\nHook here",
"negative_prompt": "distorted, muddy, synth",
"duration_s": 90, "instrumental_only": false,
"output_format": "wav", "seed": 1234, "async": true
}'
style_promptuses ACE-Step's tag vocabulary: genre, instruments, mood, tempo, vocal type. Vague words ("professional", "futuristic") drift to the model's prior; be concrete, and usenegative_promptto push away from it.POST $B/api/audio-foundry/rewrite-music-promptturns plain English into the tag form when the user wants help.lyricswith[verse]/[chorus]/[bridge]markers; omit or setinstrumental_only: true.duration_sup to 240. Always send"async": truefor anything over a few seconds.- Response
202 {"job_id"}→ pollGET $B/api/audio-foundry/jobs/<job_id>; done whenstatusisdone, withpath,document_id,duration_s,seed. Reuse the seed to reproduce a take.
A sound effect or ambience
curl -s -X POST $B/api/audio-foundry/generate/fx -H 'Content-Type: application/json' -d '{
"prompt": "rain on a tin roof, distant thunder, no music", "duration_s": 20, "output_format": "wav", "async": true
}'
duration_s up to 47. Same job polling.
Then
- A finished song can go straight into the music skill-video as the
song. - Jobs:
GET $B/api/audio-foundry/jobslists,DELETEclears finished ones. - Attribution comes back in the job result; keep it with the file if the user publishes.
Signals
- GitHub stars
- 211
- Forks
- 45
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
music-guaardvark- Source
- github.com/guaardvark/guaardvark