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.
git clone --depth 1 https://github.com/maddexritter-rgb/vibe-editingnpx agentmods add skills/maddexritter-rgb/vibe-editing/long-form-ingestWrote 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/maddexritter-rgb/vibe-editing/long-form-ingest)<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.
<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>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.00075 | $0.01357 |
| Opus 5 | $0.00037 | $0.00678 |
| Sonnet 5 | $0.00015 | $0.00271 |
| Haiku 4.5 | $0.00007 | $0.00136 |
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.
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([ 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:
transcript.json— word-level timestamps from faster-whisperscenes.json— visual scene boundaries from PySceneDetectmeta.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")
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.
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.
- 12d ago First seen · 169 lines · 75 tokens per session scan A 0ed3080c8717
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.
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.
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…
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.
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).
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.
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.