From e6417c99d63c7ddab2624bce0f1abab49c7f7aa4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Jun 2026 19:25:10 +0000 Subject: [PATCH 1/2] docs(site): add section on augmenting existing ADO pipelines Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com> --- site/src/content/docs/index.mdx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/site/src/content/docs/index.mdx b/site/src/content/docs/index.mdx index 34beae05..2f286f05 100644 --- a/site/src/content/docs/index.mdx +++ b/site/src/content/docs/index.mdx @@ -122,6 +122,23 @@ flowchart TD --- +## Augment your existing pipelines + +Already have Azure DevOps pipelines you rely on? You don't have to start from scratch. Compile an agent with `target: job` and ado-aw emits a reusable, job-level template you can drop straight into an existing pipeline -- no rewrites required. + +```yaml +jobs: + - job: Build + steps: ... + - template: agents/review.lock.yml # the agentic workflow, slotted in + parameters: + dependsOn: [Build] +``` + +The same three-job security chain (Agent → Detection → SafeOutputs) runs as part of your current pipeline, so you can layer continuous AI onto the workflows you already trust. See [Target platforms](/ado-aw/reference/targets/) for details. + +--- + ## Get started in minutes From 71b86c825f4475f8c81c25fc927004877cd41e0d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Jun 2026 19:29:39 +0000 Subject: [PATCH 2/2] docs(site): focus augment section on stage generator Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com> --- site/src/content/docs/index.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/site/src/content/docs/index.mdx b/site/src/content/docs/index.mdx index 2f286f05..b76c0a49 100644 --- a/site/src/content/docs/index.mdx +++ b/site/src/content/docs/index.mdx @@ -124,15 +124,15 @@ flowchart TD ## Augment your existing pipelines -Already have Azure DevOps pipelines you rely on? You don't have to start from scratch. Compile an agent with `target: job` and ado-aw emits a reusable, job-level template you can drop straight into an existing pipeline -- no rewrites required. +Already have Azure DevOps pipelines you rely on? You don't have to start from scratch. Compile an agent with `target: stage` and ado-aw emits a reusable, stage-level template you can drop straight into an existing multi-stage pipeline -- no rewrites required. ```yaml -jobs: - - job: Build - steps: ... +stages: + - stage: Build + jobs: ... - template: agents/review.lock.yml # the agentic workflow, slotted in parameters: - dependsOn: [Build] + dependsOn: Build ``` The same three-job security chain (Agent → Detection → SafeOutputs) runs as part of your current pipeline, so you can layer continuous AI onto the workflows you already trust. See [Target platforms](/ado-aw/reference/targets/) for details.