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 skills add hassancs91/claude-youtube-editor --skill clean-cutgit clone --depth 1 https://github.com/hassancs91/claude-youtube-editorWrote 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/skills/hassancs91/claude-youtube-editor/clean-cut)<a href="https://agentmods.dev/skills/hassancs91/claude-youtube-editor/clean-cut"><img src="https://agentmods.dev/badge/skills/hassancs91/claude-youtube-editor/clean-cut/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.
<a href="https://agentmods.dev/skills/hassancs91/claude-youtube-editor/clean-cut"><img src="https://agentmods.dev/badge/skills/hassancs91/claude-youtube-editor/clean-cut.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Privilege Escalation · line 45 Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
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.00189 | $0.04636 |
| Opus 5 | $0.00095 | $0.02318 |
| Sonnet 5 | $0.00038 | $0.00927 |
| Haiku 4.5 | $0.00019 | $0.00464 |
Grade A, and why
clean-cut 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.
How it starts
The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
clean-cut — the step-1 cut pipeline
Turn a project's raw clips (videos/video-N/DJI_*.MP4) into a clean master + edited-transcript.json (the word-level timing spine every later step anchors to). The single source of truth is videos/video-N/work/analysis/cuts.json — shared by Claude and the editor UI. Every tool lives in tools/ and takes the project dir as its first arg.
You (Claude) author the cuts by reading the transcript. No separate LLM call. The tools handle audio, encoding, QA, and the editor; the judgment — what is a retake, a false start, filler, or fluff — is yours.
Pipeline (run in order)
Let P = the project (e.g. video-1). Clip id = a short handle (0233); every artifact for a clip is named by that id (0233.wav, 0233.json). The raw MP4 path is stored per-clip in cuts.json as file.
-
Extract 16 kHz mono WAV per clip →
P/work/audio/<id>.wav(used for transcription + the RMS noise-floor / snap-to-audio tails). Not scripted — run ffmpeg per clip:ffmpeg -i videos/video-1/DJI_...0233_D.MP4 -vn -ac 1 -ar 16000 videos/video-1/work/audio/0233.wav -
Draft this video's keyterms →
P/work/keyterms.txt(do this before transcribing). Keyterms bias the recognizer toward this video's proper nouns / product / tech names so they aren't mangled (e.g. "Seedream" not "sea dream", "Cloudflare" not "cloud flare"). Accuracy here is load-bearing: the transcript text drives cut decisions AND/make-tsxgreps it for phrases to time beats — a garbled term breaks both. From the video's topic/title, list the ~10–40 likely brand names, tools, tech, and jargon, one per line (blank lines and#comments ignored). This is per-video — never hardcode terms intranscribe.py. If you skip the file, transcription still runs (empty fallback), just with more errors on specialty words. The shape is one term per line:# tools + brands named in this video Claude Code Remotion AssemblyAI ElevenLabs Cloudflare -
Transcribe (needs
ASSEMBLYAI_API_KEYin.env; verbatim, keeps fillers; auto-loadswork/keyterms.txt):python tools/transcribe.py P→P/work/transcripts/<id>.json.--clips 0233for one,--forceto redo. It prints how many keyterms it loaded — a "none" line means you haven't drafted them. -
Readable take view for analysis:
python tools/format_transcript.py P→P/work/analysis/takes-<id>.txt(segments on >0.8s gaps, fillers tagged inline with timestamps). -
Author
cuts.json(see schema below) by readingtakes-*.txt: mark every span as a keep or a categorized cut, add fluff suggestions and judgment-call flags. -
QA + review docs:
python tools/analyze_cut.py P [--style tight]→qa-report.md(internal dead-air, clipped-tail risks, tiny fragments, fluff, hard entries at cut joins, ghost speech = untranscribed energy riding inside a keep, low-confidence kept tokens). Ghost/hard-entry checks exist because a transcript diff CANNOT see a mistimed token (clipped word onset) or an untranscribed false start ("and it—") that survives the cut — only energy-vs-token cross-checks catch them (a careful listen caught both before these checks existed).python tools/make_review.py P→review.md(per-clip keep/cut table + estimated length per style). -
Editor proxy (once):
python tools/make_proxy.py P→P/work/editor/{proxy.mp4, waveform.png, manifest.json}(720p concat of raw clips + per-clip offsets). -
Previews (render BOTH, user picks):
python tools/render_cuts.py P --style tight --mode previewand--style natural→P/output/preview-<style>.mp4(720p h264_nvenc). 8.5. Machine verification of the render (MANDATORY after every preview render, before showing the user). Extract the preview's WAV →transcribe.py P --clips preview --force→python tools/verify_cut.py P→verify-report.md. A second ASR pass over the RENDER, diffed against the intended kept tokens: EXTRA words = untranscribed ghosts that rode along (false starts glued to word tails — invisible to the raw transcript, and energy heuristics can't tell them from word releases); MISSING words = clipped/dropped; plus interior-pause anomalies and low-confidence rendered tokens. Born in testing: a mistimed ASR token clipped a word onset ('slash dot env' → '...env') and a ghost 'and it—' survived to the render; a careful listen caught both, now these tools do. Treat every finding as "listen here": explain each one or fix it — don't declare the cut good while the report has unexplained lines. -
USER AUDIT — this is a hard gate, same as the plan step. Open the editor:
python tools/editor/server.py P→ http://localhost:8765. User drags keep/cut edges, adds cuts (I/O + C), compares raw vs edited playback; Save rewrites cuts.json (backup towork/analysis/backups/, appended tochanges.log); Render button re-runs a preview. Iterate until approved. -
Final master:
python tools/render_cuts.py P --style <chosen> --mode final→P/output/master-<style>.mp4(4K60 10-bit hevc_nvenc). Two MANDATORY post-render steps:
- A/V duration gate:
ffprobe -show_entries stream=durationon v:0 vs a:0 — they MUST be equal. verify_cut's A/V budget GROWS along the timeline (±2s by mid-video) and masks a real accumulating drift; the equal-duration check is the definitive one. (See the drift note under Notes.) - Playable/handoff transcode: the 10-bit HEVC master won't play in most players or the IDE preview, and the HEVC final stamps frames ~0.1% fast on 59.94fps footage. Produce an 8-bit H.264 that fixes both by re-timing to true CFR:
ffmpeg -r <src_fps> -i master-<style>.mp4 -c:v libx264 -crf 19 -pix_fmt yuv420p -c:a aac master-<style>-h264.mp4— the source fps BEFORE-ire-stamps every frame (no frame loss) so v:0==a:0. This is the file the user reviews AND the comp-native source downstream steps use.
- Handoff spine —
edited-transcript.json: word times in the FINAL master timeline. Simplest robust path (what video-1 used): extract the master's WAV andtranscribe.pyit, then normalize to{words:[{text,start,end}...]}in ms. (A cuts.json time-remapper is the planned alternative.) This file is what/make-tsxreads to sync visuals to speech.
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.
- 11d ago First seen · 150 lines · 189 tokens per session scan A dba0b0595623
clean-cut is a skill published in the GitHub repository hassancs91/claude-youtube-editor (303 stars, last pushed 23d ago), licensed MIT. It adds 189 tokens to every session and 4,636 once invoked, about $0.0009 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 skills, from other repositories
video-hyperframes
Hyperframes / Remotion-compatible continuous frame animation with autoplay support.
acestep
AI music generation with ACE-Step 1.5 — background music, vocal tracks, covers, stem extraction, audio repainting, and continuation for video production. Use when generating music, soundtracks, jingles, or working with audio stems. Triggers include background music, soundtrack, jingle, music generation, stem…
ffmpeg
Video and audio processing with FFmpeg. Use for format conversion, resizing, compression, audio extraction, and preparing assets for Remotion. Triggers include converting GIF to MP4, resizing video, extracting audio, compressing files, or any media transformation task.
moviepy
Python video composition with moviepy 2.x — overlaying deterministic text on AI-generated video (LTX-2, SadTalker), compositing clips, single-file build.py video projects. Use when adding labels/captions/lower-thirds to LTX-2 or SadTalker outputs, building short ad-style spots in pure Python without Remotion, or doing…
playwright-recording
Record browser interactions as video using Playwright. Use for capturing demo videos, app walkthroughs, and UI flows for Remotion videos. Triggers include recording a demo, capturing browser video, screen recording a website, or creating walkthrough footage.
elevenlabs
Generate AI voiceovers, sound effects, and music using ElevenLabs APIs. Use when creating audio content for videos, podcasts, or games. Triggers include generating voiceovers, narration, dialogue, sound effects from descriptions, background music, soundtrack generation, voice cloning, or any audio synthesis task.