From 844975bd755e551abe989383385ad4133997c165 Mon Sep 17 00:00:00 2001 From: Wolf Date: Sun, 21 Jun 2026 14:51:16 -0400 Subject: [PATCH] Add DAP Proxies and Utilities implementors page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Introduces a new category for tools that sit between DAP adapters and clients — proxies, multiplexers, and observability utilities that don't fit the existing adapter, editor, or SDK categories. First entries: dap-mux (DAP multiplexer) and dap-observer (read-only session inspector). --- _implementors/proxies.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _implementors/proxies.md diff --git a/_implementors/proxies.md b/_implementors/proxies.md new file mode 100644 index 0000000..8373d35 --- /dev/null +++ b/_implementors/proxies.md @@ -0,0 +1,17 @@ +--- +layout: implementors +title: "DAP Proxies and Utilities" +shortTitle: "Proxies" +author: Microsoft +index: 4 +--- + +The following table lists known tools that route, multiplex, or observe the Debug Adapter Protocol — tools that sit between adapters and clients to enable scenarios beyond what a single point-to-point DAP connection supports. + +| Tool | Description | Maintainer | +|------|-------------|------------| +[dap-mux](https://github.com/dap-mux/dap-mux)|DAP multiplexer — connects multiple clients (editors, REPLs) to a single debug adapter session simultaneously, with session persistence and late-join state replay|[@wolf](https://github.com/wolf) +[dap-observer](https://github.com/shaleh/dap-observer)|Read-only DAP client that connects to a running dap-mux session and renders the current stack frame's variables as a navigable terminal tree|[@shaleh](https://github.com/shaleh) +{: .table .table-bordered .table-responsive} + +*If you are missing a DAP proxy or utility please create a pull request in GitHub against this markdown [document](https://github.com/Microsoft/debug-adapter-protocol/blob/main/_implementors/proxies.md)*