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.
curl -O https://raw.githubusercontent.com/korovin-aa97/talkthrough-mcp/main/.agents/skills/talkthrough/SKILL.mdgit clone --depth 1 https://github.com/korovin-aa97/talkthrough-mcpWrote 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/korovin-aa97/talkthrough-mcp/talkthrough)<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.
<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>- NVIDIA SkillSpector pass
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.00074 | $0.01843 |
| Opus 5 | $0.00037 | $0.00922 |
| Sonnet 5 | $0.00015 | $0.00369 |
| Haiku 4.5 | $0.00007 | $0.00184 |
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.
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
- 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, callprocess_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 youjob_id, counts, wall-clock, and a transcript preview — do NOT dump anything else eagerly. Multi-person recording (meeting/interview)? Adddiarize=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 getS1/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. - Orient:
get_transcript(job_id)(paginate vianext_start_mswhentruncated) orsearch(job_id, "<distinctive word>")to jump straight to the relevant moments (searches speech AND on-screen OCR text). Multi-word search defaults tomatch_mode="all_words"; use"any_word"for broader lexical recall. - 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; describeobservedfrom the returned pixels, never from imagination. - 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). - 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 rawS1/S2labels remain. If a diarization amend changes labels, those names move tospeaker_names_pending_reviewand 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 withlabels={"Sx":null}. Never use a pending name in minutes or search as though it were active. A fullforce=truerebuild of a job with active or pending names must also usediarize=true; it rebuilds safely and moves every old identity to pending review, while omitting diarization is refused without changing the stored job. - Recall across sessions:
list_jobs()— the store persists; a file processed yesterday (even via CLI) is queryable byjob_idtoday.
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.
- 3d ago Changed · +4 lines dffc7c8e298a
- 5d ago Changed · +14 lines ffaf6e7c3ec1
- 9d ago First seen · 107 lines · 74 tokens per session scan A a16575d91c28
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.
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…
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…
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…
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.
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…
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.