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 agentmods add commands/dojocodinglabs/remotion-superpowers/add-musicgit clone --depth 1 https://github.com/DojoCodingLabs/remotion-superpowersWrote 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/commands/dojocodinglabs/remotion-superpowers/add-music)<a href="https://agentmods.dev/commands/dojocodinglabs/remotion-superpowers/add-music"><img src="https://agentmods.dev/badge/commands/dojocodinglabs/remotion-superpowers/add-music.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.00045 | $0.00597 |
| Opus 5 | $0.00023 | $0.00298 |
| Sonnet 5 | $0.00009 | $0.00119 |
| Haiku 4.5 | $0.00005 | $0.00060 |
Grade A, and why
add-music 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 6d 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 — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Add Music — Generate & Integrate Background Music
You are helping the user add background music to their Remotion project.
Load the remotion-production skill for the music-scoring and audio-integration rules.
Workflow
1. Understand the Mood
If not already described, ask the user:
- Genre — Electronic, jazz, classical, lo-fi, ambient, rock, orchestral, pop?
- Mood — Upbeat, calm, dramatic, inspiring, playful, cinematic?
- Tempo — Fast, medium, slow?
- Vocals — Instrumental only (recommended for background), or with vocals?
2. Generate Music
Craft a descriptive prompt and generate:
Use remotion-media generate_music:
- prompt: "[genre] background music, [mood], [tempo], no vocals, [additional descriptors]"
- project_path: [project root path]
Good prompt examples:
- "upbeat electronic background music, energetic, no vocals, modern tech startup vibe"
- "calm acoustic guitar, warm and friendly, no vocals, coffee shop atmosphere"
- "epic cinematic orchestral, building tension and release, no vocals, trailer style"
- "chill lo-fi hip hop beats, relaxed and dreamy, no vocals, study music vibe"
3. Wire into Composition
Add with fade in/out:
import { Audio, interpolate, staticFile, useCurrentFrame, useVideoConfig } from "remotion";
const frame = useCurrentFrame();
const { durationInFrames, fps } = useVideoConfig();
const musicVolume = interpolate(
frame,
[0, fps, durationInFrames - 2 * fps, durationInFrames],
[0, 0.25, 0.25, 0],
{ extrapolateLeft: "clamp", extrapolateRight: "clamp" }
);
<Audio src={staticFile("[returned-file-path]")} volume={musicVolume} />
4. Adjust for Voiceover (if present)
If the project has a voiceover, implement volume ducking — lower music to 0.1 during narration, 0.3 during silent parts. See audio-integration rule for the pattern.
5. Preview
Tell the user to check the audio in the Remotion preview (npm run dev).
Offer adjustments:
- Volume too loud/quiet?
- Wrong mood? Regenerate with a different prompt.
- Music too short? Use
<Loop>to repeat it. - Need different music for different sections? Generate multiple tracks.
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.
- 6d ago First seen · 71 lines · 45 tokens per session scan A 79c1d38ffdf9
add-music is a command published in the GitHub repository DojoCodingLabs/remotion-superpowers (116 stars, last pushed 6mo ago), licensed MIT. It adds 45 tokens to every session and 597 once invoked, about $0.0002 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 commands, from other repositories
generate-all
Generate creative assets for all posts in the current month's calendar.
cost-report
Show API cost breakdown for the current month's production.
brand-setup
Configure a new brand profile with colors, fonts, logo, visual style, platforms, and compliance rules.
edit-image
Edit a generated image — adjust background, lighting, colors, or composition.
status
Show current production status for the active brand and month.
index-assets
Index or re-index a brand's visual asset library.