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