premiere-captions

premiere-captions is a skill for Codex from ayushozha/AdobePremiereProMCP. It costs 53 tokens per session (595 once invoked), scanned A, original, MIT.

A workflow for importing, checking, and exporting timed captions or subtitles in Adobe Premiere Pro. It uses SRT files, which are text files containing subtitle words and their start and end times.

In plain words
What is it for?
Use it to verify a project and timeline, validate and clean an SRT file, import captions into a duplicated sequence, check accessibility-related formatting, and export subtitle sidecars.
Why use it?
It helps catch invalid timings, overlapping captions, and hard-to-read line breaks before delivery. It also makes clear that the Premiere server does not create a speech transcript from audio by itself.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to verify a project and timeline, validate and clean an SRT file, import captions into a duplicated sequence, check accessibility-related formatting, and export subtitle sidecars.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ayushozha/adobepremierepromcp/premiere-captions
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 ayushozha/AdobePremiereProMCP --skill premiere-captions
Clone the repo
git clone --depth 1 https://github.com/ayushozha/AdobePremiereProMCP

Made for: Codex.

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 premiere-captions

README.md
[![agentmods](https://agentmods.dev/badge/skills/ayushozha/adobepremierepromcp/premiere-captions/github.svg)](https://agentmods.dev/skills/ayushozha/adobepremierepromcp/premiere-captions)
Your own site
<a href="https://agentmods.dev/skills/ayushozha/adobepremierepromcp/premiere-captions"><img src="https://agentmods.dev/badge/skills/ayushozha/adobepremierepromcp/premiere-captions/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 premiere-captions

Your own site · 80×15
<a href="https://agentmods.dev/skills/ayushozha/adobepremierepromcp/premiere-captions"><img src="https://agentmods.dev/badge/skills/ayushozha/adobepremierepromcp/premiere-captions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 595 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.00053 $0.00595
Opus 5 $0.00026 $0.00298
Sonnet 5 $0.00011 $0.00119
Haiku 4.5 $0.00005 $0.00060

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

Security

Grade A, and why

premiere-captions 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.

skills/premiere-captions/SKILL.md · 30 lines

How it starts

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

Premiere Captions

Use supplied timed text as the source of truth. The current server does not provide trustworthy speech transcription by itself.

Required server profile

Start or restart the MCP server with MCP_TOOL_PROFILE=captions. The default standard profile also contains this workflow, but captions is the smaller dedicated surface.

Workflow

  1. Verify the host and target sequence with premiere_ping, premiere_get_project, and premiere_get_timeline.
  2. Obtain a valid SRT file with segment timestamps. If only audio exists, request or generate a timestamped transcript with a separate transcription system; this server does not claim to transcribe speech.
  3. Fix line wrapping in the SRT before import: keep at most two lines, avoid single-word orphan lines, and reject overlaps or non-positive durations.
  4. Resolve the active sequence index with premiere_get_sequence_list, duplicate it with premiere_duplicate_sequence, identify exactly one new copy and its ID, and activate that copy with premiere_set_active_sequence. Require verified: true with that ID, then re-read the sequence list and stop unless activeSequenceID matches. Leave the source untouched as the recovery boundary. A timeline snapshot or saved sequence version is audit data only, not a whole-sequence restore point.
  5. Call premiere_add_subtitles_from_srt on the duplicate. Require verified: true and an exact caption-count match.
  6. Call premiere_get_captions and compare every readable segment's text, start, and end against the source. Stop on a mismatch.
  7. Run premiere_validate_closed_captions for structural QA. Reconfirm the duplicate's active ID, export sidecar captions with premiere_export_captions using that ID as sequence_id, then verify through the filesystem that the sidecar exists, is non-empty, and parses to the expected segment count. If filesystem verification is unavailable, report the export as unverified.

Guardrails

  • Preserve source language, names, numbers, and punctuation; flag uncertain words instead of inventing them.
  • Request a visual title-safe review; the CEP caption API cannot verify styling or on-screen placement.
  • CEP caption styling, speech alignment, and in-Premiere segment splitting are explicitly unsupported because they cannot be mutated and read back safely. Style manually or use a verified MOGRT-based burned-in workflow.
  • Structural validation is not FCC certification. Report caption count, overlaps, warnings, and errors; do not infer transcription accuracy, timeline coverage, reading speed, or placement.

Read the full file on GitHub · 30 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 30 lines · 53 tokens per session scan A 4d57dfe594fb

Subscribe to this mod's changes

premiere-captions is a skill published in the GitHub repository ayushozha/AdobePremiereProMCP (99 stars, last pushed 11d ago), licensed MIT. It adds 53 tokens to every session and 595 once invoked, about $0.0003 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

premiere-pro-mcp

Install, verify, troubleshoot, and operate the Adobe Premiere Pro MCP server. Use when a user wants an agent to set up Premiere MCP, connect Claude Code/Codex/Claude Desktop, control Premiere, import media, build sequences, edit timelines, apply effects, or diagnose bridge issues.

hetpatel-11/Adobe_Premiere_Pro_MCP · 64 tokens

edit-premiere-project

Inspect, edit, verify, and export an open Adobe Premiere Pro project through the local Premiere MCP Bridge.

hetpatel-11/Adobe_Premiere_Pro_MCP · 26 tokens

whisper

Transcribe and translate speech in 99 languages.

NousResearch/hermes-agent · 13 tokens

hive.image-generation

Required before calling imagegenerate. Create and edit images from a prompt — generate an image, make a picture / logo / illustration / icon / banner / poster / thumbnail / hero image / mockup / product shot / social graphic, or edit / restyle / combine existing images from reference images. Uses OpenAI gpt-image-2…

aden-hive/hive · 149 tokens

shogun-screenshot

A screenshot tool for getting images from a computer or web page and then cropping, resizing, or masking sensitive information. Playwright is a browser-automation tool used here to capture web pages.

yohey-w/multi-agent-shogun · 149 tokens

shogun-readme-sync

A skill that compares an English README with its Japanese counterpart and brings them back into alignment. A README is the project document that explains what the software is and how to use it.

yohey-w/multi-agent-shogun · 66 tokens