evo-video-tutorial-indexer

evo-video-tutorial-indexer is a skill for Claude Code, Codex from OpenLAIR/OpenSkill. It costs 44 tokens per session (628 once invoked), scanned A, original, Apache-2.0.

A video tool that creates chapter timestamps from tutorial recordings. It extracts the audio, turns speech into text with word timings, and matches chapter titles to the points where those topics begin.

In plain words
What is it for?
Use it to index tutorial videos, align chapter names with spoken content, check timestamp order and duration, and output chapter data as JSON.
Why use it?
It avoids finding every chapter boundary by watching and timing the whole video manually.

Skill for Claude CodeCodex

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

Good fit Use it to index tutorial videos, align chapter names with spoken content, check timestamp order and duration, and output chapter data as JSON.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/openlair/openskill/evo-video-tutorial-indexer
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 OpenLAIR/OpenSkill --skill evo-video-tutorial-indexer
Clone the repo
git clone --depth 1 https://github.com/OpenLAIR/OpenSkill

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 evo-video-tutorial-indexer

README.md
[![agentmods](https://agentmods.dev/badge/skills/openlair/openskill/evo-video-tutorial-indexer/github.svg)](https://agentmods.dev/skills/openlair/openskill/evo-video-tutorial-indexer)
Your own site
<a href="https://agentmods.dev/skills/openlair/openskill/evo-video-tutorial-indexer"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-video-tutorial-indexer/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 evo-video-tutorial-indexer

Your own site · 80×15
<a href="https://agentmods.dev/skills/openlair/openskill/evo-video-tutorial-indexer"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-video-tutorial-indexer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 628 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.
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.00044 $0.00628
Opus 5 $0.00022 $0.00314
Sonnet 5 $0.00009 $0.00126
Haiku 4.5 $0.00004 $0.00063

Measured yesterday against content hash 412ae48862b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

evo-video-tutorial-indexer 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 yesterday.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/chapter_detect.py, scripts/transcribe.py, scripts/utils.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.

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.

tasks-evolved/video-tutorial-indexer/environment/skills/evo-video-tutorial-indexer/SKILL.md · 62 lines

How it starts

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

evo-video-tutorial-indexer

A comprehensive skill for extracting chapter indices from tutorial videos using FFmpeg audio extraction, OpenAI Whisper ASR transcription with word-level timestamps, and semantic chapter alignment via fuzzy string matching.

Workflow

  1. Extract audio from MP4 using FFmpeg (16kHz mono PCM WAV for optimal Whisper input)
  2. Transcribe the audio using OpenAI Whisper with word-level timestamps enabled
  3. Analyze transcript words using sliding window fuzzy matching to locate chapter boundaries
  4. Align chapter titles to timestamps using multiple matching strategies and keyword heuristics
  5. Validate structural requirements (monotonic timestamps, correct count, within duration)
  6. Output JSON with video_info and chapters array

Key Alignment Principles

  • First chapter always starts at time 0
  • Look for explicit verbal cues ("now let's...", "alright first...", "okay so...")
  • Chapter timestamp = where speaker FIRST begins sustained discussion of that topic
  • Short chapters (Save, Break, Great job!) may be just a few seconds
  • Break/Continue pattern: break is a brief interruption, continue resumes same topic
  • Timestamps must be strictly monotonically increasing
  • All timestamps within [0, duration]
  • Word-level timestamps via Whisper's cross-attention DTW provide much better precision than segment-level timestamps

Usage

import sys
sys.path.insert(0, '/app/environment/skills/evo-video-tutorial-indexer/scripts')
from transcribe import extract_audio, transcribe_video
from chapter_detect import detect_chapters, enforce_monotonic
from utils import create_chapter, create_video_index, validate_chapters, write_index

# Step 1: Extract and transcribe
audio_path = extract_audio("/root/tutorial_video.mp4", "/tmp/tutorial_audio.wav")
transcript = transcribe_video(audio_path, model_size="base")

# Step 2: Detect chapters
chapter_titles = ["What we'll do", "How we'll get there", ...]
chapters = detect_chapters(chapter_titles, transcript, duration=1382)

# Step 3: Enforce constraints and validate
chapters = enforce_monotonic(chapters, duration=1382)
errors = validate_chapters(chapters, duration=1382)

# Step 4: Write output
index = create_video_index("In-Depth Floor Plan Tutorial Part 1", 1382, chapters)
write_index(index, '/root/tutorial_index.json')

Read the full file on GitHub · 62 lines

Files

What ships with it

3 files 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. yesterday First seen · 62 lines · 44 tokens per session scan A 412ae48862b0

Subscribe to this mod's changes

evo-video-tutorial-indexer is a skill published in the GitHub repository OpenLAIR/OpenSkill (90 stars, last pushed 2d ago), licensed Apache-2.0. It adds 44 tokens to every session and 628 once invoked, about $0.0002 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-09-11.

Related

Other skills, from other repositories

slidecraft

Convert PowerPoint (PPTX) files to HTML and back, analyze PPTX structure, generate slide decks from topics via LLM, pre-cache CDN assets, or launch the interactive review web UI. Use this when the user wants to work with PowerPoint presentations -- convert ppt to html, html to pptx, inspect pptx contents, or generate…

solid-shuwen/shuttleslide · 76 tokens

slidecraft-review

Launch an interactive web UI for reviewing, editing, and approving AI-generated slide presentations with human-in-the-loop feedback. Use when the user says review the slides, check the generated presentation, see slides before finalizing, or wants a visual review interface for slide generation.

solid-shuwen/shuttleslide · 57 tokens

dream

Deep creative exploration engine. Competing perspectives, stress-tested by a 4-persona council, scored by integrity. The approach that survives attack wins — not the one that sounds best.

ariaxhan/kernel-claude · 39 tokens

minimax-video

Generate and edit videos using MiniMax H3, the state-of-the-art open multimodal generation model. Supports text-to-video, image-to-video (first/last frame), reference-to-video with multimodal context (images, video clips, audio references), native stereo sound, up to 15 seconds at 2K resolution, in-context…

joeVenner/awesome-minimax-h3 · 226 tokens

minimax-music

Generate professional-quality music using the MiniMax CLOUD Music API (music-3.0). Supports full songs with vocals, purely instrumental tracks, AI lyrics writing, and cover generation from reference audio. Typical output is 2-3 minutes of finished stereo audio. Use when the user asks to create music, generate a song…

joeVenner/awesome-minimax-h3 · 180 tokens

minimax-speech

Generate speech, voiceovers, narration and audiobooks using the MiniMax CLOUD Text-to-Speech API (T2A v2), plus voice cloning and text-described voice design. Supports 332 preset voices across 40+ languages, precise inline pause control, word- and sentence-level timestamp output, emotion and prosody control…

joeVenner/awesome-minimax-h3 · 215 tokens