talkthrough-mcp: Skill for Claude Code

.agents/skills/talkthrough/SKILL.md

talkthrough is a skill for Claude Code, Codex from korovin-aa97/talkthrough-mcp. It costs 74 tokens per session (1,843 once invoked), scanned A, original, MIT.

A tool for examining narrated screen recordings and audio files through timestamped transcripts, video keyframes, and on-screen text extracted with OCR.

In plain words
What is it for?
Turn recordings into findings, specifications, backlogs, and action items, and match spoken remarks with logs using wall-clock timestamps.
Why use it?
It gives you searchable evidence from a recording so spoken feedback, visible changes, and timing can be reviewed together.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is korovin-aa97/talkthrough-mcp's own configuration. It tells Claude Code and Codex how to work on talkthrough-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything talkthrough-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to korovin-aa97/talkthrough-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/korovin-aa97/talkthrough-mcp/main/.agents/skills/talkthrough/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/korovin-aa97/talkthrough-mcp

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 talkthrough

README.md
[![agentmods](https://agentmods.dev/badge/skills/korovin-aa97/talkthrough-mcp/talkthrough/github.svg)](https://agentmods.dev/skills/korovin-aa97/talkthrough-mcp/talkthrough)
Your own site
<a href="https://agentmods.dev/skills/korovin-aa97/talkthrough-mcp/talkthrough"><img src="https://agentmods.dev/badge/skills/korovin-aa97/talkthrough-mcp/talkthrough/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 talkthrough

Your own site · 80×15
<a href="https://agentmods.dev/skills/korovin-aa97/talkthrough-mcp/talkthrough"><img src="https://agentmods.dev/badge/skills/korovin-aa97/talkthrough-mcp/talkthrough.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,843 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00074 $0.01843
Opus 5 $0.00037 $0.00922
Sonnet 5 $0.00015 $0.00369
Haiku 4.5 $0.00007 $0.00184

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

Security

Grade A, and why

talkthrough 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 3d 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.

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.

.agents/skills/talkthrough/SKILL.md · 125 lines

How it starts

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

Analyzing narrated recordings with talkthrough

The talkthrough MCP server turns a local video/audio file into queryable structured data: timestamped transcript segments, scene keyframes, OCR'd on-screen text, and wall-clock anchoring. No LLM inside — you bring the reasoning; it brings the evidence. Everything is lazy and token-budgeted: never ask for more than the moment you are analyzing.

Prerequisite

The talkthrough MCP server must be connected (tools like process_media / get_transcript are visible). If not, tell the user to install it: claude mcp add -s user talkthrough -- uvx --python ">=3.11,<3.14" "talkthrough-mcp[diarization,url]" (see the repository README for other clients).

Core workflow

  1. Ingest once: process_media(path) — idempotent by content hash; re-calls on the same file return instantly. Given a public video/audio URL instead of a file, call process_url(url): the source is downloaded once (the only network step; YouTube needs the [url] extra) and kept inside the job, then everything below is identical and local — never download twice; a repeat call serves the stored job. Long videos take minutes and stream progress. The summary gives you job_id, counts, wall-clock, and a transcript preview — do NOT dump anything else eagerly. Multi-person recording (meeting/interview)? Add diarize=true — even when the ask is just "summarize", speaker structure is part of meeting analysis — and — whenever the headcount is known — num_speakers=N (the main accuracy lever): segments get S1/S2/… labels and the summary a talk-time roster. On an already-processed job the amend re-runs ONLY diarization (no re-transcription) — still minutes on long recordings.
  2. Orient: get_transcript(job_id) (paginate via next_start_ms when truncated) or search(job_id, "<distinctive word>") to jump straight to the relevant moments (searches speech AND on-screen OCR text). Multi-word search defaults to match_mode="all_words"; use "any_word" for broader lexical recall.
  3. Evidence per remark: get_moment(job_id, t0-2000, t1+2000) — one call returns the transcript slice + up to 3 unique frames + their OCR text + the wall-clock range. This is the workhorse; describe observed from the returned pixels, never from imagination.
  4. Precision when needed: get_frames(at_ms=...) for nearby keyframes; extract_frame(job_id, at_ms, crop={x,y,w,h}) for an exact instant at native resolution (keyframes capture scene changes + a 1 fps floor, so sub-second moments can fall between them).
  5. Keep verified names: after proving an anonymous label's identity, call label_speakers(job_id, labels={"S1":"Name"}, evidence={"S1":"intro or frame proof"}). Saved names appear in later transcript, moment, and search calls while raw S1/S2 labels remain. If a diarization amend changes labels, those names move to speaker_names_pending_review and stop being identities. Use the stored old-roster context anchors to re-check them. A pending label still in the roster can be confirmed, replaced, or removed; a stale pending label can only be removed with labels={"Sx":null}. Never use a pending name in minutes or search as though it were active. A full force=true rebuild of a job with active or pending names must also use diarize=true; it rebuilds safely and moves every old identity to pending review, while omitting diarization is refused without changing the stored job.
  6. Recall across sessions: list_jobs() — the store persists; a file processed yesterday (even via CLI) is queryable by job_id today.

Read the full file on GitHub · 125 lines

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. 3d ago Changed · +4 lines dffc7c8e298a
  2. 5d ago Changed · +14 lines ffaf6e7c3ec1
  3. 9d ago First seen · 107 lines · 74 tokens per session scan A a16575d91c28

Subscribe to this mod's changes

talkthrough is a skill published in the GitHub repository korovin-aa97/talkthrough-mcp (26 stars, last pushed 3d ago), licensed MIT. It adds 74 tokens to every session and 1,843 once invoked, about $0.0004 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-08-30.

Related

Other skills, from other repositories

threebrowser-studio-mcp

Author, inspect, render, validate, animate, and save Three.js WebGPU projects in the native ThreeBrowser Studio through its real threestudio MCP tools. Use whenever Codex is asked to build or edit a ThreeBrowser Studio scene, material, Blender-style shader or texture graph, animation, lighting setup, camera, or…

SamG-Coder/ThreeBrowserStudio · 122 tokens

helmdeck-hyperframes-authoring

Author render-deterministic hyperframes compositions. Use when generating HTML/CSS/JS for hyperframes.compose, hyperframes.render, or any pipeline that produces a programmatic MP4 via hyperframes — including builtin.scaffolded-narrated-video, builtin.prompt-video, builtin.prompt-narrated-video. The framework's "render…

tosin2013/helmdeck · 132 tokens

zenith

Author, edit, and render deterministic .zen design documents (posters, decks/slides, social graphics, flyers, books, magazines, diagrams, ads) with the zenith CLI. Use when the task is to create or change a visual design as structured, editable, version-controllable source — not a flat AI image. Covers: design tokens…

zenitheditor/zenith · 197 tokens

postey-video

Turn one video into posts everywhere with Postey: transcribe it, write a caption per platform, upload with a cover frame, and leave drafts ready for approval. Handles local files and large uploads, which the MCP server cannot reach.

posteyai/skills · 51 tokens

audio-transcriber-transcription

Speech-to-text on the audio-transcriber MCP server — run Whisper (faster-whisper, falling back to openai-whisper) over a local audio/video file or a microphone recording, and export txt/srt/vtt/json captions. Use when the agent must transcribe or translate spoken audio, generate subtitle/caption files, or pick a…

Knuckles-Team/audio-transcriber · 119 tokens

install-image-search-mcp

Install and configure the Serbyte Image Search MCP server for Unsplash, Pexels, and Pixabay. Use when a user asks an AI coding agent to install this MCP, add it to an MCP client, configure provider API keys, or verify the installation.

serbyte-development/image-search-mcp · 58 tokens