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/transcribegit 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/transcribe)<a href="https://agentmods.dev/commands/dojocodinglabs/remotion-superpowers/transcribe"><img src="https://agentmods.dev/badge/commands/dojocodinglabs/remotion-superpowers/transcribe.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 | $0.00038 | $0.00816 |
| Opus 5 | $0.00019 | $0.00408 |
| Sonnet 5 | $0.00008 | $0.00163 |
| Haiku 4.5 | $0.00004 | $0.00082 |
Grade A, and why
transcribe 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 3d 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 — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Transcribe — Audio/Video to Text
You are helping the user transcribe audio or video files into text with precise timestamps.
Workflow
1. Identify the Source File
Find audio/video files to transcribe:
# Check common locations
ls public/audio/ public/footage/ public/ 2>/dev/null | grep -E '\.(mp3|wav|m4a|ogg|mp4|mov|webm)$'
Ask the user which file to transcribe if multiple exist.
2. Transcribe with Whisper
Use remotion-media generate_subtitles:
- input: [path to audio/video file]
- project_path: [project root path]
This generates an SRT file with timestamps saved to the project.
3. Present the Transcript
Show the transcription with timestamps:
📝 Transcription: [filename]
[00:00:00 → 00:00:03] Welcome to our product demo
[00:00:03 → 00:00:07] Today we're going to show you how easy it is
[00:00:07 → 00:00:11] to create professional videos with code
...
Total duration: [X]s
Word count: [X] words
4. Output Formats
Ask what format the user needs:
SRT (default) — Standard subtitle format:
1
00:00:00,000 --> 00:00:03,200
Welcome to our product demo
2
00:00:03,200 --> 00:00:07,100
Today we're going to show you how easy it is
JSON Captions — For Remotion's @remotion/captions:
[
{ "text": " Welcome", "startMs": 0, "endMs": 800, "confidence": 0.95 },
{ "text": " to", "startMs": 800, "endMs": 1000, "confidence": 0.98 },
{ "text": " our", "startMs": 1000, "endMs": 1200, "confidence": 0.97 }
]
Plain text — Just the words, no timestamps:
Welcome to our product demo. Today we're going to show you how easy it is to create professional videos with code.
5. Common Use Cases
After transcription, suggest next steps:
- Add captions → Run
/add-captionsto create TikTok-style animated subtitles - Sync animations → Use timestamps to trigger visual elements at specific words
- Create a script → Edit the transcript as the basis for a new voiceover
- Translate → Use the transcript to create versions in other languages
- Content repurpose → Extract key quotes for social media clips
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.
- 3d ago First seen · 113 lines · 38 tokens per session scan A 8c1fb82a38a0
transcribe is a command published in the GitHub repository DojoCodingLabs/remotion-superpowers (116 stars, last pushed 6mo ago), licensed MIT. It adds 38 tokens to every session and 816 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.
index-assets
Index or re-index a brand's visual asset library.
status
Show current production status for the active brand and month.