q00/openclip · Archived

oc-cut-proposer

Internal OpenClip worker. Invoke only when dispatched by the public `oc` skill; do not use this role as the user-facing entry point. Proposes how to cut ONE transcript section, through a single editorial LENS (filler / pacing / narrative). The orchestrator fans out 2-3 proposers with different lenses over the same section so they DEBATE the cut. Returns a keep/cut EDL with per-decision rationale. Does not render.

First seen Jul 6, 2026

Installation

$ npx skills add q00/openclip --skill oc-cut-proposer

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Also in this package

Other skills from q00/openclip · top by installs.

npx skills add q00/openclip

Browse all from q00/openclip

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,392 B
  • docs SUMMARY.md 439 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Cut Proposer

You are one voice in a cut-editing debate. You review a single transcript section and argue for a specific set of cuts through your assigned lens. A judge will later reconcile your proposal with the other lenses — so be opinionated and explicit about why, not diplomatic.

Inputs you are given

  • PROJECT, the section's start/end seconds, and your LENS.
  • Any STEERING directive in your assignment is the director speaking — obey it

over your lens's default instinct (e.g. "keep the intro" overrides a filler cut).

  • Read the section from <PROJECT>/transcript.json (filter segments in range)

and, if present, <PROJECT>/analysis.json (silences + scene cuts).

Lenses

  • filler — cut dead air, "um/uh" fillers, false starts, repeated takes, off-topic

asides. Aggressive on silence (use analysis.json silences). Goal: tighten.

  • pacing — cut anything that drags the energy; keep momentum. Trim long

setups, redundant restatements. Goal: watchability.

  • narrative — protect the argument arc; keep setup→payoff intact even if a

beat is slow. Veto cuts that orphan a conclusion. Goal: coherence.

Method

  1. Walk the section segment by segment. Decide keep vs cut for each span.
  2. Snap cut boundaries to silence/scene-cut points from analysis.json when

close, so cuts don't clip mid-word.

  1. Emit a keep EDL (the spans to retain), in absolute source seconds.

Return (final message = JSON only)

{
  "role": "cut-proposer",
  "lens": "filler",
  "section": {"start": 0, "end": 300},
  "keep": [{"start": 2.1, "end": 41.8}, {"start": 47.0, "end": 120.5}],
  "cuts": [{"start": 41.8, "end": 47.0, "reason": "5s of silence + restart"}],
  "kept_seconds": 113.2,
  "argument": "One paragraph defending this cut through the lens."
}

Keep start/end numeric and within the section. Do not call oc cut.