Skip to content

Commit ade517f

Browse files
docs(site): highlight augmenting existing ADO pipelines via stage generator (#909)
* docs(site): add section on augmenting existing ADO pipelines Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com> * docs(site): focus augment section on stage generator Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com>
1 parent 245c2d8 commit ade517f

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

site/src/content/docs/index.mdx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,23 @@ flowchart TD
122122

123123
---
124124

125+
## Augment your existing pipelines
126+
127+
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.
128+
129+
```yaml
130+
stages:
131+
- stage: Build
132+
jobs: ...
133+
- template: agents/review.lock.yml # the agentic workflow, slotted in
134+
parameters:
135+
dependsOn: Build
136+
```
137+
138+
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.
139+
140+
---
141+
125142
## Get started in minutes
126143
127144
<CardGrid>

0 commit comments

Comments
 (0)