long-form-ingest

long-form-ingest is a skill for Claude Code from maddexritter-rgb/vibe-editing. It costs 75 tokens per session (1,357 once invoked), scanned A, original, MIT.

A video-ingestion step that creates a word-by-word transcript with timings, detects visual scene changes, and records technical details such as duration, frame rate, and resolution.

In plain words
What is it for?
Use it whenever a new video enters an editing workflow and has no transcript yet. It prepares transcript, scene-boundary, and technical-metadata files.
Why use it?
It turns a raw video into organised information that later editing steps can use. This avoids manually transcribing the recording or marking every scene boundary.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/transcribe.py _staging/audio.wav transcript.json.

Part of the vibe-editing plugin — 18 skills shipped together

Good fit Use it whenever a new video enters an editing workflow and has no transcript yet. It prepares transcript, scene-boundary, and technical-metadata files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/maddexritter-rgb/vibe-editing
agentmods
npx agentmods add skills/maddexritter-rgb/vibe-editing/long-form-ingest

Made for: Claude Code.

Or install vibe-editing, the plugin that ships this one along with the rest of its 18 skills.

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 long-form-ingest

README.md
[![agentmods](https://agentmods.dev/badge/skills/maddexritter-rgb/vibe-editing/long-form-ingest/github.svg)](https://agentmods.dev/skills/maddexritter-rgb/vibe-editing/long-form-ingest)
Your own site
<a href="https://agentmods.dev/skills/maddexritter-rgb/vibe-editing/long-form-ingest"><img src="https://agentmods.dev/badge/skills/maddexritter-rgb/vibe-editing/long-form-ingest/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 long-form-ingest

Your own site · 80×15
<a href="https://agentmods.dev/skills/maddexritter-rgb/vibe-editing/long-form-ingest"><img src="https://agentmods.dev/badge/skills/maddexritter-rgb/vibe-editing/long-form-ingest.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,357 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00075 $0.01357
Opus 5 $0.00037 $0.00678
Sonnet 5 $0.00015 $0.00271
Haiku 4.5 $0.00007 $0.00136

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

Security

Grade A, and why

long-form-ingest scanned grade A with 1 finding 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/transcribe_local.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

dur = float(subprocess.check_output([
plugins/vibe-editing/skills/long-form-ingest/SKILL.md · 169 lines

How it starts

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

Long-Form Ingest

Extract three artifacts from a raw video:

  1. transcript.json — word-level timestamps from faster-whisper
  2. scenes.json — visual scene boundaries from PySceneDetect
  3. meta.json — video technical metadata

All outputs go to ./out/<source-basename>/.

Workflow

# 1. Metadata
ffprobe -v quiet -print_format json -show_format -show_streams "$INPUT" > meta.json

# 2. Extract audio (mono 16kHz for Whisper)
ffmpeg -y -i "$INPUT" -ac 1 -ar 16000 -vn _staging/audio.wav

# 3. Transcribe with faster-whisper (word-level)
python scripts/transcribe.py _staging/audio.wav transcript.json

# 4. Scene detection (optional but cheap — skip for pure talking-head if user says --no-scenes)
python scripts/scenes.py "$INPUT" scenes.json

transcript.json schema

{
  "language": "en",
  "duration": 2534.12,
  "segments": [
    {
      "id": 0,
      "start": 0.32,
      "end": 8.74,
      "text": " So this one time I got a call from a founder who was convinced his SaaS was dying.",
      "words": [
        {"word": " So", "start": 0.32, "end": 0.48, "probability": 0.99},
        {"word": " this", "start": 0.48, "end": 0.63, "probability": 0.98},
        ...
      ]
    }
  ]
}

scenes.json schema

{
  "scenes": [
    {"start": 0.0, "end": 128.4, "type": "static"},
    {"start": 128.4, "end": 245.1, "type": "cut"}
  ]
}

scripts/transcribe.py

#!/usr/bin/env python3
import sys, json
from faster_whisper import WhisperModel

audio_path, out_path = sys.argv[1], sys.argv[2]

# large-v3 for quality. Use "medium" if GPU-poor.
model = WhisperModel("large-v3", device="auto", compute_type="auto",
                     download_root="~/.cache/whisper-models")

segments, info = model.transcribe(
    audio_path,
    word_timestamps=True,
    vad_filter=True,
    vad_parameters={"min_silence_duration_ms": 500}
)

out = {
    "language": info.language,
    "duration": info.duration,
    "segments": []
}

for i, seg in enumerate(segments):
    out["segments"].append({
        "id": i,
        "start": seg.start,
        "end": seg.end,
        "text": seg.text,
        "words": [
            {"word": w.word, "start": w.start, "end": w.end, "probability": w.probability}
            for w in (seg.words or [])
        ]
    })

with open(out_path, "w") as f:
    json.dump(out, f, indent=2)

print(f"Transcribed {info.duration:.1f}s in {len(out['segments'])} segments")

Read the full file on GitHub · 169 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 169 lines · 75 tokens per session scan A 0ed3080c8717

Subscribe to this mod's changes

long-form-ingest is a skill published in the GitHub repository maddexritter-rgb/vibe-editing (7 stars, last pushed 2mo ago), licensed MIT. It adds 75 tokens to every session and 1,357 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). 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