From 2d508570831e684c020bdced3b1398bce970caff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 13:35:00 +0000 Subject: [PATCH] docs: fix AGENTS.md architecture tree for scripts/ section Two inaccuracies in the architecture tree: 1. scripts/gate.js was listed as a committed file but it is in .gitignore (build artifact - bundled by npm run build into scripts/ado-script/dist/). Removed from the tree. 2. scripts/ado-script/src/ only showed the import/ subdirectory but the actual directory also contains gate/ (gate evaluator source) and shared/ (modules shared across bundles). Updated to reflect the actual structure. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- AGENTS.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index d440902c..e026dac6 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -159,10 +159,11 @@ Every compiled pipeline runs as three sequential jobs: │ ├── update-ado-agentic-workflow.md # Guide for modifying an existing agentic pipeline │ └── debug-ado-agentic-workflow.md # Guide for troubleshooting a failing agentic pipeline ├── scripts/ # Supporting scripts shipped as release artifacts -│ ├── ado-script/ # TypeScript workspace for bundled gate.js, import.js, and future bundles -│ │ └── src/ -│ │ └── import/ # Runtime prompt resolver bundle -│ └── gate.js # Bundled gate evaluator (built from scripts/ado-script/, see docs/ado-script.md) +│ └── ado-script/ # TypeScript workspace for bundled gate.js, import.js, and future bundles +│ └── src/ +│ ├── gate/ # Gate evaluator source (bundled to dist/gate/index.js) +│ ├── import/ # Runtime prompt resolver source (bundled to dist/import/index.js) +│ └── shared/ # Shared modules across bundles (auth, ado-client, env-facts, types.gen.ts) ├── tests/ # Integration tests and fixtures ├── docs/ # Per-concept reference documentation (see index below) ├── Cargo.toml # Rust dependencies