From 08416df9fe2d780ded3239c6ebf931deefe3a67b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 01:17:22 +0000 Subject: [PATCH] docs: add missing container_runtime.rs entry to AGENTS.md architecture tree The compile::extensions module tree in AGENTS.md listed every file under src/compile/extensions/ except container_runtime.rs, a 583-line typed Docker runtime configuration module (mounts, network, add-host, user, tmpfs, ContainerRuntimeConfig + builder) used by the azure-devops MCP extension and mcp common compilation. Added it to the index so the architecture tree matches src/. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index 9f231c07..5e230796 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -96,6 +96,7 @@ fail-closed and only pauses when the agent actually proposed a reviewed output. │ │ │ └── integration_tests.rs # Import resolution + merge integration tests │ │ ├── extensions/ # CompilerExtension trait and infrastructure extensions │ │ │ ├── mod.rs # Trait, Extension enum, collect_extensions(), re-exports +│ │ │ ├── container_runtime.rs # Typed Docker runtime configuration for MCPG stdio servers (mounts, network, add-host, user, tmpfs; ContainerRuntimeConfig + builder) │ │ │ ├── ado_aw_marker.rs # Always-on metadata marker extension (emits # ado-aw-metadata JSON) │ │ │ ├── github.rs # Always-on GitHub MCP extension │ │ │ ├── safe_outputs.rs # Always-on SafeOutputs MCP extension