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
17 changes: 17 additions & 0 deletions site/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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: stage` and ado-aw emits a reusable, stage-level template you can drop straight into an existing multi-stage pipeline -- no rewrites required.

```yaml
stages:
- stage: Build
jobs: ...
- 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

<CardGrid>
Expand Down