Azure DevOps Integration

Connect Vyre IDE to your Azure DevOps organization. Access Azure Repos, update Azure Boards, trigger agents from Azure Pipelines, and handle PR feedback natively.

Setup Instructions

1

Generate Personal Access Token (PAT)

In Azure DevOps, go to User settings → Personal access tokens and create a token with Code (read & write) and Build (read & execute) permissions.

2

Connect Organization in Vyre

Go to Settings → Integrations → Azure DevOps in Vyre. Enter:

  • Your Organization URL (https://dev.azure.com/your-org)
  • The PAT generated in Step 1
3

Link Projects & Boards

Select which Azure Repos and Azure Boards projects Vyre should synchronize with.

Key Features

Azure Pipelines

You can run Vyre audits inside your Azure Pipelines azure-pipelines.yml configuration:

yaml
# azure-pipelines.yml
trigger:
- main

pool:
  vmImage: 'ubuntu-latest'

steps:
- script: |
    curl -fsSL https://vyre.dev/install.sh | sh
    export VYRE_API_TOKEN=$(VYRE_API_TOKEN)
    vyre security scan --repo $(Build.Repository.Name)
  displayName: 'Run Vyre Security Scan'
On-Premises Support

Azure DevOps Server (formerly TFS) is fully supported. Configure the gateway proxy URL in your enterprise settings dashboard to authorize connections.

Security & PAT Scopes

Keep your Azure DevOps PAT scoped only to the required repositories and pipelines. Vyre does not require administrative or project-creation scopes to operate.