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.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/instructions/korovin-aa97/talkthrough-mcp/agents-md)<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>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.00867 | $0.00867 |
| Opus 5 | $0.00434 | $0.00434 |
| Sonnet 5 | $0.00173 | $0.00173 |
| Haiku 4.5 | $0.00087 | $0.00087 |
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.
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
guidance.pyis 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.- Generated files are never hand-edited.
examples/prompts/,integrations/**(exceptclaude-desktop/manifest.json), and.mcp.jsonare rendered byscripts/gen_integrations.py; edit the generator (or the canonical sources below) and re-run it. A drift test byte-pins every generated file. - Canonical sources mirrored by the generator: the Agent Skill at
.agents/skills/talkthrough/SKILL.mdand the example agent atexamples/agents/feedback-triage.md. - New/changed tools ship guidance: 10–15 one-line examples (≤120 chars) in
the description — gated by
tests/unit/test_guidance.py. - Tool responses stay token-budgeted: paginate or cap any new output
(see "Token-budget rules" in
docs/DESIGN.md). - Privacy: no runtime network beyond one-time model/tool downloads and the
single explicit
process_urldownload, no telemetry, nothing uploaded. Network code lives only incore/url_ingest.py/core/url_download.py; raw URLs never reach manifests, the URL index, logs, progress or errors. - 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 updatetests/integration/fixture_facts.pytogether). - Conventional commits (
feat:,fix:,docs:,test:,chore:).
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.
- yesterday Changed · +5 lines · +105 tokens per session 79dcbbd29895
- 8d ago First seen · 66 lines · 762 tokens per session scan A 3534386ef9e0
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.
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.
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).
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.
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.
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).
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.