Media-Editor-MCP: Skill for Claude Code

.claude/skills/pp-mark-beats/SKILL.md

pp-mark-beats is a skill for Claude Code from nguyenph88/Media-Editor-MCP. It costs 73 tokens per session (692 once invoked), scanned A, original, MIT.

A command for detecting beats in audio on the first audio track of an active Adobe Premiere Pro sequence and placing markers on the timeline. It can mark every beat or only downbeats, which are the first beats of musical bars.

In plain words
What is it for?
Use `/pp-mark-beats` to mark downbeats by default, or every beat with `/pp-mark-beats beats`, for timing edits such as reels.
Why use it?
It removes the need to listen through the track and place timing markers by hand, including when clips are trimmed or split.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is nguyenph88/Media-Editor-MCP's own configuration. It tells Claude Code how to work on Media-Editor-MCP itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything Media-Editor-MCP configures →

Reuse

Borrowing it

Nothing to install: this file belongs to nguyenph88/Media-Editor-MCP. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/nguyenph88/Media-Editor-MCP/main/.claude/skills/pp-mark-beats/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/nguyenph88/Media-Editor-MCP

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 pp-mark-beats

README.md
[![agentmods](https://agentmods.dev/badge/skills/nguyenph88/media-editor-mcp/pp-mark-beats/github.svg)](https://agentmods.dev/skills/nguyenph88/media-editor-mcp/pp-mark-beats)
Your own site
<a href="https://agentmods.dev/skills/nguyenph88/media-editor-mcp/pp-mark-beats"><img src="https://agentmods.dev/badge/skills/nguyenph88/media-editor-mcp/pp-mark-beats/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 pp-mark-beats

Your own site · 80×15
<a href="https://agentmods.dev/skills/nguyenph88/media-editor-mcp/pp-mark-beats"><img src="https://agentmods.dev/badge/skills/nguyenph88/media-editor-mcp/pp-mark-beats.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 692 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.
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.00073 $0.00692
Opus 5 $0.00036 $0.00346
Sonnet 5 $0.00015 $0.00138
Haiku 4.5 $0.00007 $0.00069

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

Security

Grade A, and why

pp-mark-beats 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 10d 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/pp-mark-beats/SKILL.md · 38 lines

How it starts

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

Mark beats on the timeline

Detect beats of the music on A1 and drop a marker at each one on the timeline ruler. Works on sequences of any length (a 5-min track is fine — markers are chunked).

Inputs: optional granularity — downbeats (default, one per bar — what you cut reels on) or beats (every beat, ~4x as many).

Workflow

  1. premiere_health — plugin must be green.
  2. get_audio_clips with audioTrackIndex: 0 (A1) — gives each clip's startSeconds, endSeconds, and mediaPath.
    • No clips on A1 → tell the user and stop.
    • Multiple clips on A1 → process each one (detect on its own media file, offset per clip).
  3. detect_beats on each clip's mediaPathbeats + downbeats (in SOURCE time).
  4. Map source beat times → timeline, using the clip's source trim points:
    • get_audio_clips returns inSeconds/outSeconds (the clip's source in/out points). A clip trimmed at the head has inSeconds > 0.
    • timelineTime = clip.startSeconds + (beatTime - clip.inSeconds).
    • Keep only beats inside the used region: clip.inSeconds <= beatTime <= clip.outSeconds.
    • If inSeconds/outSeconds come back null (a plugin build predating this field), fall back to timelineTime = clip.startSeconds + beatTime and warn that head-trimmed clips will be shifted.
  5. add_markers, chunked at 500 markers per call (the tool's max):
    • FIRST call: clearExisting: true — this is the re-run story: every sequence marker is wiped and re-added, so calling /pp-mark-beats twice never duplicates.
    • Subsequent chunks: clearExisting: false.
    • Marker style: name "Beat N" / "Bar N", colorIndex 7 (cyan).

Re-run semantics (what the user asked about)

There is no per-marker identity — clearExisting: true removes ALL markers on the sequence ruler, including ones the user added by hand, then this skill re-adds only beat markers. Say this in the report: "re-running replaces every sequence marker, not just beat markers." If the user has manual markers they want to keep, they should say so — then skip clearExisting and accept duplicates, or have them re-add manual markers after.

Read the full file on GitHub · 38 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. 10d ago First seen · 38 lines · 73 tokens per session scan A ef63c26c552a

Subscribe to this mod's changes

pp-mark-beats is a skill published in the GitHub repository nguyenph88/Media-Editor-MCP (0 stars, last pushed 3mo ago), licensed MIT. It adds 73 tokens to every session and 692 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens