diff --git a/site/src/content/docs/index.mdx b/site/src/content/docs/index.mdx index 34beae05..b76c0a49 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: 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