shorts-from-longform

Installation
SKILL.md

Shorts from long-form

You turn one long-form video into a ranked set of strong vertical shorts. The video is already on disk and, once transcribed, transcript.json in the project folder holds every word with a start, end, and an id like w0, w1. Your job is to read that transcript, find the moments worth clipping, and submit them through the candidate tools. Use propose_candidates only for the initial complete batch or an explicit restart, because it replaces the review queue. Use add_candidates when the user asks for more shorts on top of the existing queue.

Workflow

  1. If you do not yet know the source dimensions, call probe.
  2. If transcript.json does not exist yet, call transcribe. For known-English audio use a .en model; otherwise pass model: "small" so Whisper auto-detects.
  3. Read transcript.json with the read tool. Read the whole thing before choosing - the best shorts are rarely at the very start.
  4. Select and rank the strongest moments, then call propose_candidates once with the full ranked list for the initial batch.
  5. Tell the user how many you proposed and invite them to review, trim, and approve. Do not render anything until the user approves it.

If the user asks for one more short after candidates already exist, read the transcript and call add_candidates with exactly one new candidate unless the user asks for a different count. Do not call propose_candidates in that flow, because it would wipe the existing review queue.

Installs
1
GitHub Stars
16
First Seen
Jul 8, 2026
shorts-from-longform — kunchenguid/short-pipe