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.
npx agentmods add instructions/glslang/windbg-mcp/agents-mdgit clone --depth 1 https://github.com/glslang/windbg-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/glslang/windbg-mcp/agents-md)<a href="https://agentmods.dev/instructions/glslang/windbg-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/glslang/windbg-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 | $0.00987 | $0.00987 |
| Opus 5 | $0.00494 | $0.00494 |
| Sonnet 5 | $0.00197 | $0.00197 |
| Haiku 4.5 | $0.00099 | $0.00099 |
Grade A, and why
windbg-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 4d 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 — 35 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
Project Structure & Module Organization
windbg-mcp is a Rust MCP server for WinDbg/DbgEng. Core code lives in src/: main.rs selects the process role (supervisor or engine worker) and wires tokio and stdio transport, server.rs defines the MCP tool surface, engine.rs is the supervisor (session registry, worker processes, routing), worker.rs is the child process that owns serialized DbgEng access on a dedicated thread, proto.rs is the protocol between them, and ttd.rs handles Time Travel Debugging discovery and launch logic. Operational documentation is in docs/, agent playbooks are in skills/windbg-debugging/, and PowerShell examples live in examples/. Helper tooling such as IOCTL harness scripts is under tools/. Build output in target/ is generated and should not be committed.
Build, Test, and Development Commands
cargo fmt --all --check: verify Rust formatting as CI does.cargo clippy --all-targets: run lint checks for library, binary, and tests.cargo test: run the unit tests, including parser and tool-schema coverage insrc/server.rsandsrc/ttd.rs.cargo build --release: build the Windows release binary attarget/release/windbg-mcp.exe.
For local iteration while an MCP client may have the release executable locked, prefer cargo test or debug builds. See CLAUDE.md before replacing a running release binary.
Coding Style & Naming Conventions
Use Rust 2024 idioms and rustfmt defaults. Keep DbgEng access inside the worker process and on its engine thread; do not add ad hoc cross-thread or cross-process calls. The supervisor must never touch a DebugEngine.
There is exactly one approved exception, and it is not a precedent for a second. SetInterrupt is the single DbgEng entry point Microsoft documents as safe to call from any thread, and it is the only call made off the engine thread: from worker::interrupt_running on the request reader, and from dbgscope's two watchdog threads, which have always done it. It is unavoidable rather than convenient — an interrupt exists to stop an operation that is running, so the engine thread is busy by definition, and a request routed through it would be read only once there was nothing left to interrupt. Adding any other cross-thread DbgEng call is a design change, not a local one: raise it before writing it. See the DECISIONS.md entry "An interrupt is bound to a job, not to a moment" and the worker.rs module docs. Prefer typed Rust APIs and structured JSON over parsing debugger text unless the command surface only exposes text. Use snake_case for functions, modules, fields, and tests; use PascalCase for types. Keep comments short and focused on non-obvious debugger behavior.
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.
- 4d ago First seen · 35 lines · 987 tokens per session scan A 3b0c09ba29bc
windbg-mcp AGENTS.md is an instructions file published in the GitHub repository glslang/windbg-mcp (9 stars, last pushed yesterday), licensed MIT. It adds 987 tokens to every session, about $0.0049 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-31.
Other instructions, from other repositories
dump-analyzer-mcp-server AGENTS.md
Instructions for zuohuiyang/dump-analyzer-mcp-server, covering dump-analyzer-mcp-server development guide, repository structure, version management, making a new release and 1. update version numbers.
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).
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.
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.
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).