Skip to main content

Azure DevOps Connector

Connect Azure DevOps so the agent can search your code, create work items, and index your wiki as a knowledge source.

TL;DR
  • Two connector types: ADO OAuth for live code and work items, Documentation connector for wiki knowledge
  • OAuth supports User Account (Azure AD) and Managed Identity authentication
  • A single connector covers your entire ADO organization — all projects and repos
  • Wiki content is indexed for semantic search and auto-syncs every 24 hours

Two connector types

Azure DevOps has two connector types because they serve different purposes:

ConnectorWhat it doesAuth options
ADO OAuthLive source code access, work items, pipelines, semantic code searchUser Account (OAuth) or Managed Identity
Documentation connectorIndexes wiki pages and docs into a searchable knowledge baseManaged Identity or PAT

You can use both together — the OAuth connector for live code investigations, and the documentation connector for wiki-based knowledge.


ADO OAuth connector

Auth types

MethodHow it worksBest for
User AccountSign in with your Azure AD account. The agent accesses ADO through your permissions. Tokens refresh automatically.Interactive setup — recommended for most users
Managed IdentityUse the agent's managed identity to authenticate. Supports Federated Identity Credentials (FIC) for cross-tenant.Automated setup, service accounts, cross-tenant access
OAuth tokens refresh automatically

ADO OAuth tokens expire after ~1 hour, but the agent refreshes them automatically before expiration using a 5-minute buffer. Each refresh generates a new refresh token, creating a self-sustaining renewal chain. Your connector stays connected through multi-hour investigations — no manual re-authentication required.

When you'll need to re-authenticate: if the refresh token expires (lifetime varies by Azure AD policy), if an admin revokes the app authorization, or if your connector was set up before version 26.2.247.0 (one re-auth enables auto-refresh going forward).

What the agent can do

Source code analysis:

  • Search code across all repos in your organization using ADO Search API
  • Read file contents by path and branch
  • Correlate Azure resource errors with source code locations (with confidence scoring)
  • Semantic code search — find code related to an incident using natural language

Work item management:

  • Create work items (Task, Bug, Epic, Feature) with area path, iteration, priority, and severity
  • Link work items to Azure resources for traceability

Repository mapping:

  • Find and link ADO repos to Azure resources
  • Identify IaC files (Bicep, Terraform, ARM templates) in linked repos

Documentation connector (Wiki knowledge)

Index your ADO wiki pages so the agent can search them during investigations. When the agent encounters an issue, it searches your indexed wiki for relevant troubleshooting guides, architecture docs, and runbooks.

How it works

  1. Crawls all pages from your specified ADO wiki URL (or a specific sub-section)
  2. Chunks and embeds document content into a vector search index
  3. Semantic search — during investigations, the agent finds relevant passages and cites the original wiki page
  4. Auto-syncs every 24 hours to pick up wiki updates

Supported content

  • Wiki pages (ADO Wiki format)
  • Git repository files — 15 supported formats: .md, .txt, .rst, .adoc, .asciidoc, .wiki, .textile, .org, .htm, .html, .json, .yaml, .yml, .xml, .csv
  • Scoped indexing — point to a sub-page to index only a specific section of your wiki

Get started

ResourceWhat you'll learn
Connect Source Code →Step-by-step guide for connecting GitHub and ADO repositories
Set up ADO Connector →Detailed ADO connector tutorial

CapabilityWhat it adds
Root Cause Analysis →How source code context improves investigation accuracy
Memory →How indexed knowledge integrates with the agent's persistent memory
Upload Knowledge →Upload documents directly instead of connecting a wiki
Was this page helpful?