Use this skill whenever the user wants to generate sound effects, ambient audio, or short audio clips from a text description. Triggers include: any mention of 'sound effect', 'sfx', 'generate sound', 'make a sound', 'audio effect', 'ambient sound', 'foley', 'sound clip', 'noise', or requests to produce a specific sound (e.g. 'make a gunshot sound', 'generate thunder', 'create the sound of rain'). Also use when the user describes an action or scenario and wants the corresponding audio (e.g. 'so…
Use this skill whenever the user wants to generate sound effects, ambient audio, or short audio clips from a text description.
Triggers include: any mention of 'sound effect', 'sfx', 'generate sound', 'make a sound', 'audio effect', 'ambient sound', 'foley', 'sound clip', 'noise', or requests to produce a specific sound (e.g. 'make a gunshot sound', 'generate thunder', 'create the sound of rain').
Also use when the user describes an action or scenario and wants the corresponding audio (e.g. 'someone getting spanked', 'a door slamming', 'cartoon boing').
Do NOT use for speech synthesis, music generation with melody/lyrics, or voice cloning.
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars524
Default branchmain
Open issues3
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
Declared agentsclawdbot
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md5,492 B
docsSUMMARY.md663 B
History
First seen on skills.sh
First recorded snapshot · 335 installs
SKILL.md
sound-fx
Generate any sound effect from a text description — footsteps, explosions, cartoon boings, ambient rain, or whatever you can imagine.
Triggers
sound effect / sfx / foley
generate sound / make a sound / create audio
ambient sound / background noise
what does X sound like / make the sound of X
音效 / 声音 / 音频效果
Quick Start
# Animals
python3 skills/sound-fx/scripts/sfx.py "a cat purring contentedly, deep rumbling vibration" -d 8
python3 skills/sound-fx/scripts/sfx.py "dog sneezing three times in a row" -d 3
python3 skills/sound-fx/scripts/sfx.py "dog eating food really fast, chomping and gulping" -d 4
# Funny
python3 skills/sound-fx/scripts/sfx.py "cartoon character getting spanked, exaggerated squeaky yelp" -d 2
python3 skills/sound-fx/scripts/sfx.py "someone sitting on a whoopee cushion mid-meeting" -d 2
# Ambient (save to file)
python3 skills/sound-fx/scripts/sfx.py "heavy rain on a tin roof" -d 15 -o rain.wav
python3 skills/sound-fx/scripts/sfx.py "campfire crackling at night, crickets in background" -d 15 -o campfire.wav
Arguments
Argument
Default
Description
prompt
required
Text description of the sound to generate
--duration / -d
auto
Length in seconds (1–30). Omit to let the model decide.
--format / -f
wav
Output format: wav, mp3, flac
--output / -o
output.wav
Path to save the generated audio
--api-key
from env/config
Noiz API key (overrides stored key)
Configuration
# Save your API key once
python3 skills/sound-fx/scripts/sfx.py config --set-api-key YOUR_KEY
# Or set via environment variable
export NOIZ_API_KEY=YOUR_KEY