Skills sound-fx
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.
git clone https://github.com/NoizAI/skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/NoizAI/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/sound-fx" ~/.claude/skills/noizai-skills-sound-fx && rm -rf "$T"
skills/sound-fx/SKILL.mdsound-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 |
|---|---|---|
| required | Text description of the sound to generate |
/ | auto | Length in seconds (1–30). Omit to let the model decide. |
/ | | Output format: , , |
/ | | Path to save the generated audio |
| 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
Get your API key at developers.noiz.ai.
Fun Example Prompts
🐾 Animals
| Prompt | Suggested Duration |
|---|---|
| 8s |
| 3s |
| 2s |
| 3s |
| 4s |
| 5s |
| 4s |
| 6s |
| 3s |
| 8s |
😂 Funny & Expressive
| Prompt | Suggested Duration |
|---|---|
| 2s |
| 3s |
| 2s |
| 5s |
| 3s |
| 3s |
| 2s |
| 5s |
| 3s |
| 2s |
| 5s |
🌍 Ambient & Atmosphere
| Prompt | Suggested Duration |
|---|---|
| 15s |
| 15s |
| 10s |
| 15s |
| 15s |
🎮 Action & Sci-Fi
| Prompt | Suggested Duration |
|---|---|
| 2s |
| 5s |
| 2s |
| 3s |
Output
On success, the audio file is saved to the output path and the URL is printed:
✓ Saved to output.wav (3.2s, 282 KB) URL: https://storage.googleapis.com/...
Third-Party Integration
To send generated sound effects to Discord, Telegram, Feishu, or mix them into videos with ffmpeg, see ref_3rd_party.md.
Requirements
- Python 3.6+
package:requestspip install requests- Noiz API key from developers.noiz.ai
Security & Data Disclosure
- API key: Stored in
(permissions~/.config/noiz/api_key
) or via0600
env variable.NOIZ_API_KEY - Network: The text prompt is sent to
for generation. No other data is transmitted.https://noiz.ai/v1/text-to-sound - Output: Generated audio is downloaded from a Noiz GCS URL and saved locally.