premiere-proxy-conform

premiere-proxy-conform is a skill for Codex from ayushozha/AdobePremiereProMCP. It costs 61 tokens per session (664 once invoked), scanned A, original, MIT.

A workflow for creating, attaching, checking, and eventually reconnecting proxy media in Adobe Premiere Pro. Proxy media is a smaller editing copy of high-resolution footage that makes editing easier on slower systems or remote storage.

In plain words
What is it for?
Use it to inventory project media, create proxies with chosen Premiere presets, monitor encoding, attach matching proxy files, audit proxy status, and check that original files are available before export.
Why use it?
It helps speed up editing while checking that each proxy matches the correct source media and frame rate. It also separates creating a proxy from attaching it and confirms when the original media is ready for delivery.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to inventory project media, create proxies with chosen Premiere presets, monitor encoding, attach matching proxy files, audit proxy status, and check that original files are available before export.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ayushozha/adobepremierepromcp/premiere-proxy-conform
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-proxy-conform
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-proxy-conform

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/ayushozha/adobepremierepromcp/premiere-proxy-conform"><img src="https://agentmods.dev/badge/skills/ayushozha/adobepremierepromcp/premiere-proxy-conform.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 664 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.00061 $0.00664
Opus 5 $0.00030 $0.00332
Sonnet 5 $0.00012 $0.00133
Haiku 4.5 $0.00006 $0.00066

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

Security

Grade A, and why

premiere-proxy-conform 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 11d 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-proxy-conform/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 Proxy Conform

Treat identity and timebase matching as mandatory. A fast proxy with the wrong media or frame rate is worse than no proxy.

Required server profile

Start or restart the MCP server with MCP_TOOL_PROFILE=proxies; the default standard profile does not expose the complete proxy mutation and readback workflow.

Workflow

  1. Inventory project media with premiere_get_project_items, premiere_get_media_info, and premiere_get_offline_items. Capture source path, duration, frame rate, audio presence, and offline status. Note that proxy mutation tools address root-bin item indices; stop or reorganize deliberately when an item cannot be addressed safely.
  2. Choose an edit-friendly intraframe proxy preset at an existing absolute .epr path and a deterministic absolute output path whose parent directory exists. Preserve source-relative names and refuse to overwrite an existing file.
  3. For a new proxy, call premiere_create_proxy with output_path and require a non-empty jobId, requestAccepted: true, and state: pending_encode. This queues Adobe Media Encoder; it does not attach media. Poll premiere_probe_media for that exact output path at a bounded interval. Require two consecutive successful probes at least 10 seconds apart with the same positive file_size_bytes before treating the encode as stable. Default to a 30-minute timeout when the user gives no limit. On timeout or probe failure, report the encode as pending or failed and do not attach the partial file. Once stable, call premiere_attach_proxy for that output path and require verified: true plus the same canonical path. Never attach a second time after attachment becomes readable.
  4. Verify every item using both proxy read tools; stop if their proxy state or canonical paths disagree. Call premiere_probe_media for both source and proxy, then compare duration, frame rate, and audio streams.
  5. Enable proxy playback with premiere_toggle_proxies and require verified: true plus proxiesEnabled: true. Before final delivery, verify originals are online, disable proxy playback, and require verified proxiesEnabled: false. Do not infer that an export used originals solely from this playback-state readback; validate the rendered output independently.
  6. Run a final relink/status audit. If direct-export tools are also loaded, render and probe a short representative segment before the full export; otherwise report that delivery validation remains pending.

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. 11d ago First seen · 30 lines · 61 tokens per session scan A 6ec703457a0a

Subscribe to this mod's changes

premiere-proxy-conform is a skill published in the GitHub repository ayushozha/AdobePremiereProMCP (99 stars, last pushed 11d ago), licensed MIT. It adds 61 tokens to every session and 664 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

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

art-director

AI art direction system. Claude directs image generation models (Gemini, DALL-E, Flux) via structured prompts. Generate banners, diagrams, logos, screenshots, and social media visuals without leaving the terminal.

vibeeval/vibecosystem · 46 tokens

agent-tamagotchi

Terminal pet that lives in your statusline. 12 species, 5 stats (DEBUGGING, PATIENCE, CHAOS, WISDOM, SPEED). Reacts to your workflow - happy when tests pass, sad when builds fail, excited during swarm mode. Deterministic species from user ID.

vibeeval/vibecosystem · 68 tokens