suggest-sfx

suggest-sfx is a skill for Claude Code from hassancs91/claude-faceless-shorts-creator. It costs 169 tokens per session (2,821 once invoked), scanned A, original, MIT.

A sound-design workflow for short videos that matches proposed sound effects to the video’s visual beats and spoken words, then creates an audition preview.

In plain words
What is it for?
Use it to plan, review, and audition subtle sound effects for narrated short videos, such as pops, chimes, and transition sounds.
Why use it?
It removes the guesswork from choosing when sounds should play and keeps effects below the narration. A shared library helps reuse sounds across videos.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to plan, review, and audition subtle sound effects for narrated short videos, such as pops, chimes, and transition sounds.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hassancs91/claude-faceless-shorts-creator/suggest-sfx
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 hassancs91/claude-faceless-shorts-creator --skill suggest-sfx
Clone the repo
git clone --depth 1 https://github.com/hassancs91/claude-faceless-shorts-creator

Made for: Claude Code.

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 suggest-sfx

README.md
[![agentmods](https://agentmods.dev/badge/skills/hassancs91/claude-faceless-shorts-creator/suggest-sfx/github.svg)](https://agentmods.dev/skills/hassancs91/claude-faceless-shorts-creator/suggest-sfx)
Your own site
<a href="https://agentmods.dev/skills/hassancs91/claude-faceless-shorts-creator/suggest-sfx"><img src="https://agentmods.dev/badge/skills/hassancs91/claude-faceless-shorts-creator/suggest-sfx/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for suggest-sfx

Your own site · 80×15
<a href="https://agentmods.dev/skills/hassancs91/claude-faceless-shorts-creator/suggest-sfx"><img src="https://agentmods.dev/badge/skills/hassancs91/claude-faceless-shorts-creator/suggest-sfx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 169 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,821 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00169 $0.02821
Opus 5 $0.00084 $0.01411
Sonnet 5 $0.00034 $0.00564
Haiku 4.5 $0.00017 $0.00282

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

Security

Grade A, and why

suggest-sfx 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 12d 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.

.claude/skills/suggest-sfx/SKILL.md · 151 lines

How it starts

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

suggest-sfx — the SFX pass

Take a rendered, voiced short and add tasteful sound effects, synced to the visual beats and the narration, drawn from a shared, growing SFX library. Work collaboratively and beat-by-beat; the user audits the plan and gives notes.

The shape: a declarative plan (sfx-plan.json) is the source of truth → a tool consumes it (tools/mix_sfx.py) → a library grows (media/library/sfx/) → a hard USER-AUDIT gate before anything is mixed.

Sound taste is a brand contract — read brand.md §7 every time. The house style is calm/premium (Linear / Anthropic / Vercel), felt-not-heard, always under the voice. NOT MrBeast-loud.

Inputs (read these first, every session)

  • brand.md §7 (Sound design) — the SFX taste contract: subtlety, density, palette, levels, sync, signature motifs, source policy. Non-negotiable.
  • shorts/short-N-<niche>/beats.json — the beats and REAL per-word voice times (written back by gen_voice.py). Sync cues to these words (a pop on "boom", a chime on "free").
  • The shot source remotion/src/shots/short-N/*.tsx — the INTERNAL animation frames are where the real visual beats are (piece lands, digit pops, badge stamps). Read the shot, convert its local frame to global time: at_s = (local_frame + sequence_from) / fps. Do not guess — the cue must land on the exact frame the thing happens.
  • media/library/sfx/catalog.json + palette.json — the library you draw from and grow.

The library (media/library/sfx/) — the durable asset

  • palette.json — generation recipes: generic, reusable sound ids + prompts + duration + tags. The source of truth for what the library SHOULD contain.
  • catalog.json — the manifest of what EXISTS: {id, file, category, tags, duration_s, peak_dbfs, loudness_lufs, source, model, license, prompt, used_in} per clip. Written by gen_sfx.py.
  • clips/*.mp3 — loudness-normalized clips (~−20 LUFS, −1.5 dBFS ceiling) so a plan's per-cue gain_db is perceptually meaningful.
  • Library-first, always. Reuse an existing clip before generating. Name/tag clips GENERICALLY (ui-toggle-on, whoosh-soft, pop-reveal) so future videos reuse them — the library is the durable asset, each video is one draw from it. Only genuinely-missing sounds get added to palette.json and generated.

Read the full file on GitHub · 151 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. 12d ago First seen · 151 lines · 169 tokens per session scan A b0616e4e8728

Subscribe to this mod's changes

suggest-sfx is a skill published in the GitHub repository hassancs91/claude-faceless-shorts-creator (232 stars, last pushed 25d ago), licensed MIT. It adds 169 tokens to every session and 2,821 once invoked, about $0.0008 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

verticals

AI-native vertical video engine with niche intelligence. Takes a one-line topic and a niche profile, and outputs a finished YouTube Short/Reel/TikTok with AI-generated b-roll, voiceover, burned-in captions, background music, and thumbnail. Supports multiple LLM providers (Claude, Gemini, GPT, Ollama), TTS providers…

rushindrasinha/youtube-shorts-pipeline · 93 tokens

data-mining-engine

A prompt-writing guide for designing individual shots in Seedance 2.0, an AI video-generation service.

geniusdapeng-collab/super-mickey · 137 tokens

creative-theme-generator

Converts any user input into structured creative themes for AI video generation. Handles: natural language descriptions, keywords, long-form text extraction, partial fields, random generation, and batch test tasks. Outputs standardized 12-field JSON (taskid, type, theme, description, durationsec, creativestyle, tone…

geniusdapeng-collab/super-mickey · 126 tokens

ai-film-studio

AI film production studio with pre-built scripts: analyze inspiration/reference videos (Gemini), write script + storyboard, generate stills (GPT Image 2; Seedream 5 / Nano Banana as fallbacks), video (Gemini Omni 1.1 Flash, FLUX 3 Video, Seedance 2.5/2.0, LTX 2.5/2.3; Veo 3.1 fallback), audio (ElevenLabs), and…

realaman90/ai-film-skills · 214 tokens

supermickey-studio

A research pipeline that gathers product information, customer reviews, competitor details, and supporting evidence for marketing work.

geniusdapeng-collab/super-mickey · 167 tokens

seedance-director

A workflow coordinator that connects several skills for producing a complete set of Seedance video clips from a short-film request.

geniusdapeng-collab/super-mickey · 151 tokens