Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down