Skip to content

Commit f8fc562

Browse files
docs: fix architecture tree duplication and add missing MCP fields (#320)
* Initial plan * docs: fix architecture tree and MCP server docs Agent-Logs-Url: https://github.com/githubnext/ado-aw/sessions/dc83b39f-941e-441c-b9b2-90338404d290 Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com>
1 parent 2575246 commit f8fc562

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ Alongside the correctly generated pipeline yaml, an agent file is generated from
2222
│ ├── main.rs # Entry point with clap CLI
2323
│ ├── allowed_hosts.rs # Core network allowlist definitions
2424
│ ├── ecosystem_domains.rs # Ecosystem domain lookups (python, rust, node, etc.)
25-
│ ├── data/
26-
│ │ └── ecosystem_domains.json # Ecosystem domain lists (synced from gh-aw)
25+
│ ├── engine.rs # Engine enum, CLI params, model/version defaults
2726
│ ├── compile/ # Pipeline compilation module
2827
│ │ ├── mod.rs # Module entry point and Compiler trait
2928
│ │ ├── common.rs # Shared helpers across targets

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,20 @@ mcp-servers:
328328
container: "node:20-slim"
329329
entrypoint: "node"
330330
entrypoint-args: ["path/to/mcp-server.js"]
331+
# args: additional Docker runtime arguments inserted before the image name
332+
# (e.g. ["--memory", "512m"]). Dangerous flags like --privileged trigger
333+
# a compile-time warning.
334+
args: []
335+
# mounts: volume mounts in "source:dest:mode" format
336+
mounts:
337+
- "/host/data:/app/data:ro"
338+
# env: environment variables for the MCP container process.
339+
# Use "" (empty string) as the value to forward the variable from the
340+
# pipeline environment (passthrough); supply a literal string for static
341+
# values.
342+
env:
343+
MY_SECRET: "" # passthrough from pipeline env
344+
STATIC_VALUE: "hello" # literal value
331345
allowed:
332346
- search
333347
- analyze

0 commit comments

Comments
 (0)