Skip to content

Commit 2d50857

Browse files
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>
1 parent 3c50dad commit 2d50857

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

AGENTS.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,11 @@ Every compiled pipeline runs as three sequential jobs:
159159
│ ├── update-ado-agentic-workflow.md # Guide for modifying an existing agentic pipeline
160160
│ └── debug-ado-agentic-workflow.md # Guide for troubleshooting a failing agentic pipeline
161161
├── scripts/ # Supporting scripts shipped as release artifacts
162-
│ ├── ado-script/ # TypeScript workspace for bundled gate.js, import.js, and future bundles
163-
│ │ └── src/
164-
│ │ └── import/ # Runtime prompt resolver bundle
165-
│ └── gate.js # Bundled gate evaluator (built from scripts/ado-script/, see docs/ado-script.md)
162+
│ └── ado-script/ # TypeScript workspace for bundled gate.js, import.js, and future bundles
163+
│ └── src/
164+
│ ├── gate/ # Gate evaluator source (bundled to dist/gate/index.js)
165+
│ ├── import/ # Runtime prompt resolver source (bundled to dist/import/index.js)
166+
│ └── shared/ # Shared modules across bundles (auth, ado-client, env-facts, types.gen.ts)
166167
├── tests/ # Integration tests and fixtures
167168
├── docs/ # Per-concept reference documentation (see index below)
168169
├── Cargo.toml # Rust dependencies

0 commit comments

Comments
 (0)