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.
npx skills add manthanpatelll/soundeffects-claude-code --skill soundeffectsgit clone --depth 1 https://github.com/manthanpatelll/soundeffects-claude-codeWrote 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.
[](https://agentmods.dev/skills/manthanpatelll/soundeffects-claude-code/soundeffects)<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>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.
| Model | Per session | Once 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 |
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.
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
- Get file path from user argument (e.g.,
/soundeffects:soundeffects /path/to/video.mp4) - Verify file exists and get duration:
ffmpeg -i <file> 2>&1 | grep Duration - 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
- If video (
- Transcribe with Whisper (word-level timestamps):
IMPORTANT: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\"]}') "<PLUGIN_DIR>= the root of this plugin. Find it by looking for theengine/folder containingbuild_sfx_track.py. Common locations:~/.claude/plugins/soundeffects-claude-code/- Wherever the user cloned the repo
- Map SFX placements -- analyze transcript, assign ~25-40 contextual SFX + 9-10 digital readouts
- Update EVENTS_FINAL in
<PLUGIN_DIR>/engine/build_sfx_track.pywith the new placements - Build track:
cd <PLUGIN_DIR>/engine uv run python build_sfx_track.py --output "<video_dir>/<video_name> - SFX Track.wav" --duration-ms <duration> - Open output folder:
open <video_directory>(macOS) orxdg-open <video_directory>(Linux)
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.
- 8d ago First seen · 84 lines · 106 tokens per session scan A ed48093beb4e
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.
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.
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…
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.
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).
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.
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.