talkthrough-mcp: Instructions file for Claude Code

AGENTS.md

talkthrough-mcp AGENTS.md is an instructions file for Claude Code, Codex, OpenCode from korovin-aa97/talkthrough-mcp. It costs 867 tokens per session, scanned A, original, MIT.

Repository instructions for Talkthrough MCP, a local server that turns narrated screen recordings into transcripts, key video frames, on-screen text, and timing information. MCP is a standard way for AI tools to call local services.

In plain words
What is it for?
Use them when changing or testing Talkthrough MCP, running its test and quality checks, regenerating integration files, or understanding its processing pipeline.
Why use it?
They give coding agents the commands, architecture, and rules needed to work safely in the repository. They also emphasize that recordings stay on the local machine.

Instructions file for Claude CodeCodexOpenCode

Written for Claude Code and Codex and OpenCode: Claude Code plugin machinery, but also the file is AGENTS.md. Also seen: mentions Claude Code; mentions AGENTS.md.

This is korovin-aa97/talkthrough-mcp's own configuration. It tells Claude Code, Codex and OpenCode 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.md
Clone the repo
git clone --depth 1 https://github.com/korovin-aa97/talkthrough-mcp

Made for: Claude Code, Codex, OpenCode.

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-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/korovin-aa97/talkthrough-mcp/agents-md.svg)](https://agentmods.dev/instructions/korovin-aa97/talkthrough-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/korovin-aa97/talkthrough-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/korovin-aa97/talkthrough-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 867 This file is loaded in full into every session.
When invoked 867 The same file — it is already loaded in full.
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.00867 $0.00867
Opus 5 $0.00434 $0.00434
Sonnet 5 $0.00173 $0.00173
Haiku 4.5 $0.00087 $0.00087

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

Security

Grade A, and why

talkthrough-mcp AGENTS.md 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.

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.md · 71 lines

How it starts

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

AGENTS.md

Instructions for AI coding agents working in this repository. Humans: see CONTRIBUTING.md.

What this is

A local-first MCP server (Python) that turns narrated screen recordings into agent-ready data: local Whisper transcript, scene keyframes, OCR text, wall-clock anchoring. No LLM inside the server. Recordings never leave the machine — keep it that way.

Commands

uv sync --extra diarization --extra url   # env (python pinned via .python-version)
uv run pytest tests/unit -q    # fast suite — run on every change
uv run pytest -q               # full suite (downloads whisper tiny once)
uv run ruff check              # lint (must be clean)
uv run mypy src                # strict typing (must be clean)
uv run python scripts/gen_integrations.py   # regenerate ALL engine artifacts

CI = ruff + mypy + unit + integration + e2e on ubuntu; ruff + unit on macos.

Architecture in one breath

src/talkthrough_mcp/core/ — deterministic pipeline (no MCP imports): probe → wallclock → stt → frames → dedup → ocr → manifest → jobs, orchestrated by core/pipeline.py. core/url_ingest.py + core/url_download.py — the one network boundary (process_url): classify → destination gate → download under caps → verify → install as a managed source → the same pipeline. server.py — thin MCPServer layer (9 tools, 6 prompts). cli.py — serve/process/process-url/gc. Full map: docs/DESIGN.md.

Hard rules

  1. guidance.py is the single source of truth for tool descriptions and prompt templates. Never edit a tool description, prompt, example prompt file, or plugin command anywhere else.
  2. Generated files are never hand-edited. examples/prompts/, integrations/** (except claude-desktop/manifest.json), and .mcp.json are rendered by scripts/gen_integrations.py; edit the generator (or the canonical sources below) and re-run it. A drift test byte-pins every generated file.
  3. Canonical sources mirrored by the generator: the Agent Skill at .agents/skills/talkthrough/SKILL.md and the example agent at examples/agents/feedback-triage.md.
  4. New/changed tools ship guidance: 10–15 one-line examples (≤120 chars) in the description — gated by tests/unit/test_guidance.py.
  5. Tool responses stay token-budgeted: paginate or cap any new output (see "Token-budget rules" in docs/DESIGN.md).
  6. Privacy: no runtime network beyond one-time model/tool downloads and the single explicit process_url download, no telemetry, nothing uploaded. Network code lives only in core/url_ingest.py / core/url_download.py; raw URLs never reach manifests, the URL index, logs, progress or errors.
  7. Tests accompany changes: unit for pure logic; integration when behavior needs real ffmpeg/whisper (fixtures are committed; regenerating them is macOS-only — tests/fixtures/make_fixtures.py — and must update tests/integration/fixture_facts.py together).
  8. Conventional commits (feat:, fix:, docs:, test:, chore:).

Read the full file on GitHub · 71 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. yesterday Changed · +5 lines · +105 tokens per session 79dcbbd29895
  2. 8d ago First seen · 66 lines · 762 tokens per session scan A 3534386ef9e0

Subscribe to this mod's changes

talkthrough-mcp AGENTS.md is an instructions file published in the GitHub repository korovin-aa97/talkthrough-mcp (26 stars, last pushed yesterday), licensed MIT. It adds 867 tokens to every session, about $0.0043 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 instructions, from other repositories

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens