avenox-roughcut

avenox-roughcut is a skill for Claude Code, Codex from avenoxai/avenoxskills. It costs 92 tokens per session (1,306 once invoked), scanned A, original, MIT.

A video rough-cut workflow that uses a transcript to remove silence and identify flubbed takes or restarted sentences. A rough cut is an early edit that removes unwanted parts before the final edit.

In plain words
What is it for?
Use it to trim talking-head or screen recordings, create a timed transcript, review bad-take candidates, and produce a cleaner first edit.
Why use it?
It separates easy dead-air removal from edits that require understanding what was said, while leaving the flub list for approval before cutting.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to trim talking-head or screen recordings, create a timed transcript, review bad-take candidates, and produce a cleaner first edit.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/avenoxai/avenoxskills/avenox-roughcut
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 avenoxai/avenoxskills --skill avenox-roughcut
Clone the repo
git clone --depth 1 https://github.com/avenoxai/avenoxskills

Made for: Claude Code, 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 avenox-roughcut

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/avenoxai/avenoxskills/avenox-roughcut"><img src="https://agentmods.dev/badge/skills/avenoxai/avenoxskills/avenox-roughcut.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,306 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.00092 $0.01306
Opus 5 $0.00046 $0.00653
Sonnet 5 $0.00018 $0.00261
Haiku 4.5 $0.00009 $0.00131

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

Security

Grade A, and why

avenox-roughcut 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 9d 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/avenox-roughcut/SKILL.md · 104 lines

How it starts

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

Rough cut — transcript-driven (silence + flubs)

Two kinds of cut: silence (dead air, mechanical → auto-editor) and flubs/retakes (a restarted sentence, semantic → transcript + agent judgment). The director approves the flub list before anything is cut.

Pipeline

Job dir (LOCAL — never inside a synced/cloud folder): $STUDIO_JOBS/<job>/{raw,cut,transcript,frames}

Set STUDIO_JOBS to wherever you keep heavy media, e.g. export STUDIO_JOBS=~/video/projects. Keeping media out of a synced folder matters: cloud sync will thrash on multi-GB intermediates.

1. Transcribe (local mlx-whisper — Apple Silicon)

cd "$STUDIO_JOBS/<job>"
python3 -c "
import os, certifi; os.environ['SSL_CERT_FILE']=certifi.where(); os.environ['REQUESTS_CA_BUNDLE']=certifi.where()
import mlx_whisper, json
r=mlx_whisper.transcribe('<RAW>', path_or_hf_repo='mlx-community/whisper-large-v3-turbo', language='<LANG>', word_timestamps=False)
segs=[{'i':i,'start':round(s['start'],2),'end':round(s['end'],2),'text':s['text'].strip()} for i,s in enumerate(r['segments'])]
json.dump({'text':r['text'].strip(),'segments':segs}, open('transcript/raw_timed.json','w'), ensure_ascii=False, indent=1)
"

~48s for 14 min of audio on an M-series Mac. Local is the default — it is faster and cheaper than any API round trip at this length. Note that most LLM-routing proxies have no whisper endpoint; if you must go remote, use a dedicated speech API.

2. Detect flubs (read transcript, propose to the director)

Scan raw_timed.json for:

  • repeated sentence-starts (the same opening said twice)
  • cut-off restarts (a half sentence, then the full take)
  • self-corrections ("we need X" → "instead of X, …")
  • hanging filler words right before a gap

Present as a table (mm:ss + text). The director approves before cutting. This step stays human-gated — an agent cutting semantic content unreviewed will eventually remove a real point.

3. Cut — flubs (ffmpeg) THEN silence (auto-editor)

Read the full file on GitHub · 104 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. 9d ago First seen · 104 lines · 92 tokens per session scan A 740c52623a20

Subscribe to this mod's changes

avenox-roughcut is a skill published in the GitHub repository avenoxai/avenoxskills (49 stars, last pushed 1mo ago), licensed MIT. It adds 92 tokens to every session and 1,306 once invoked, about $0.0005 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

pptx

Use this skill any time a .pptx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying…

agentscope-ai/QwenPaw · 152 tokens

edu-math-tutorial

A Chinese-language guide for turning a maths problem into a step-by-step teaching video. It explains how to break down the solution, write narration, format equations, and structure scenes.

agentscope-ai/QwenPaw · 146 tokens

banner-creator

Create banners using AI image generation. Discuss format/style, generate variations, iterate with user feedback, crop to target ratio. Use when user wants to create a banner, header, hero image, cover image, GitHub banner, Twitter header, or readme banner.

ReScienceLab/opc-skills · 57 tokens

logo-creator

Create logos using AI image generation. Discuss style/ratio, generate variations, iterate with user feedback, crop, remove background, and export as SVG. Use when user wants to create a logo, icon, favicon, brand mark, mascot, emblem, or design a logo.

ReScienceLab/opc-skills · 59 tokens

nanobanana

Generate and edit images using Google Gemini 3 Pro Image (Nano Banana Pro). Supports text-to-image, image editing, various aspect ratios, and high-resolution output (2K/4K). Use when user wants to generate images, create images, use Gemini image generation, or do AI image generation.

ReScienceLab/opc-skills · 65 tokens

gpt-image-gen

MUST read before generating images. Detailed prompt-crafting guide for gpt-image models, covering tool routing (native imagegeneration server tool vs the generateimage tool), prompt structure from subject to background, verbatim text rendering, anti-patterns, and the revisedprompt feedback loop for iteration.

code-yeongyu/senpi · 63 tokens