windbg-mcp AGENTS.md

windbg-mcp AGENTS.md is an instructions file for Codex, OpenCode from glslang/windbg-mcp. It costs 987 tokens per session, scanned A, original, MIT.

A repository instruction file for windbg-mcp, a Rust server that lets coding agents work with WinDbg, Microsoft's Windows debugger. It documents the code layout, development commands, style rules, and tests.

In plain words
What is it for?
Use it when developing windbg-mcp, including formatting Rust code, running lint checks and tests, building releases, or working on its debugger and time-travel-debugging components.
Why use it?
It gives an agent the project's local rules and explains where important code lives. This reduces guesswork when building, checking, or changing the debugger server.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/glslang/windbg-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/glslang/windbg-mcp

Made for: 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 windbg-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/glslang/windbg-mcp/agents-md.svg)](https://agentmods.dev/instructions/glslang/windbg-mcp/agents-md)
Your own site
<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>
Per session 987 This file is loaded in full into every session.
When invoked 987 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.00987 $0.00987
Opus 5 $0.00494 $0.00494
Sonnet 5 $0.00197 $0.00197
Haiku 4.5 $0.00099 $0.00099

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

Security

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.

AGENTS.md · 35 lines

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 in src/server.rs and src/ttd.rs.
  • cargo build --release: build the Windows release binary at target/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.

Read the full file on GitHub · 35 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. 4d ago First seen · 35 lines · 987 tokens per session scan A 3b0c09ba29bc

Subscribe to this mod's changes

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.

Related

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.

zuohuiyang/dump-analyzer-mcp-server · 1,809 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

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

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,182 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,345 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