soundeffects

soundeffects is a skill for Claude Code from manthanpatelll/soundeffects-claude-code. It costs 106 tokens per session (1,229 once invoked), scanned A, original, MIT.

A tool that creates a timed sound-effects track for a video or Instagram Reel. It extracts or converts the audio, transcribes spoken words with timestamps, and produces one WAV file.

In plain words
What is it for?
Use it to add context-matched effects, including digital readouts, to video or audio files and export the finished track as WAV.
Why use it?
It removes the need to find sound effects and place them manually against speech and events in a video.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths.

Part of the soundeffects plugin — 1 skill shipped together

Good fit Use it to add context-matched effects, including digital readouts, to video or audio files and export the finished track as WAV.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/manthanpatelll/soundeffects-claude-code/soundeffects
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add manthanpatelll/soundeffects-claude-code --skill soundeffects
Clone the repo
git clone --depth 1 https://github.com/manthanpatelll/soundeffects-claude-code

Made for: Claude Code.

Or install soundeffects, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for soundeffects

README.md
[![agentmods](https://agentmods.dev/badge/skills/manthanpatelll/soundeffects-claude-code/soundeffects.svg)](https://agentmods.dev/skills/manthanpatelll/soundeffects-claude-code/soundeffects)
Your own site
<a href="https://agentmods.dev/skills/manthanpatelll/soundeffects-claude-code/soundeffects"><img src="https://agentmods.dev/badge/skills/manthanpatelll/soundeffects-claude-code/soundeffects.svg" alt="Measured on agentmods" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,229 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00106 $0.01229
Opus 5 $0.00053 $0.00615
Sonnet 5 $0.00021 $0.00246
Haiku 4.5 $0.00011 $0.00123

Measured 8d ago against content hash ed48093beb4e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

soundeffects scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/soundeffects/SKILL.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sound Effects Track Generator

Setup (First Time Only)

This skill requires Python dependencies. Run once after installing:

cd <PLUGIN_DIR>/engine
uv sync

Where <PLUGIN_DIR> is wherever you cloned/installed this plugin (e.g., ~/.claude/plugins/soundeffects-claude-code/).

System requirements: ffmpeg, Python 3.10+, uv (Python package manager)

Workflow

  1. Get file path from user argument (e.g., /soundeffects:soundeffects /path/to/video.mp4)
  2. Verify file exists and get duration: ffmpeg -i <file> 2>&1 | grep Duration
  3. Prepare audio for Whisper:
    • If video (.mp4, .mov, .mkv): extract audio: ffmpeg -i <video> -vn -acodec pcm_s16le -ar 16000 -ac 1 /tmp/sfx_audio_extract.wav -y
    • If audio (.wav, .mp3, .aac, .m4a): convert to 16kHz mono: ffmpeg -i <audio> -vn -acodec pcm_s16le -ar 16000 -ac 1 /tmp/sfx_audio_extract.wav -y
  4. Transcribe with Whisper (word-level timestamps):
    cd <PLUGIN_DIR>/engine
    uv run python -c "
    import whisper, json
    model = whisper.load_model('base')
    result = model.transcribe('/tmp/sfx_audio_extract.wav', word_timestamps=True, language='en')
    words = []
    for seg in result['segments']:
        for w in seg.get('words', []):
            words.append({'word': w['word'].strip(), 'start': round(w['start'], 3), 'end': round(w['end'], 3)})
    for w in words:
        print(f'{w[\"start\"]:7.3f}s  {w[\"word\"]}')
    "
    
    IMPORTANT: <PLUGIN_DIR> = the root of this plugin. Find it by looking for the engine/ folder containing build_sfx_track.py. Common locations:
    • ~/.claude/plugins/soundeffects-claude-code/
    • Wherever the user cloned the repo
  5. Map SFX placements -- analyze transcript, assign ~25-40 contextual SFX + 9-10 digital readouts
  6. Update EVENTS_FINAL in <PLUGIN_DIR>/engine/build_sfx_track.py with the new placements
  7. Build track:
    cd <PLUGIN_DIR>/engine
    uv run python build_sfx_track.py --output "<video_dir>/<video_name> - SFX Track.wav" --duration-ms <duration>
    
  8. Open output folder: open <video_directory> (macOS) or xdg-open <video_directory> (Linux)

Read the full file on GitHub · 84 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 84 lines · 106 tokens per session scan A ed48093beb4e

Subscribe to this mod's changes

soundeffects is a skill published in the GitHub repository manthanpatelll/soundeffects-claude-code (21 stars, last pushed 3mo ago), licensed MIT. It adds 106 tokens to every session and 1,229 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens