Catalog
github/azure-devops-cli

github

azure-devops-cli

Manage Azure DevOps resources via CLI including projects, repos, pipelines, builds, pull requests, work items, artifacts, and service endpoints. Use when working with Azure DevOps, az commands, devops automation, CI/CD, or when user mentions Azure DevOps CLI.

global
New~942
v1.0Saved Jun 26, 2026

Azure DevOps CLI

Manage Azure DevOps resources using the Azure CLI with the Azure DevOps extension.

CLI Version: 2.81.0 (current as of 2025)

Prerequisites

# Install Azure CLI
brew install azure-cli  # macOS
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash  # Linux

# Install Azure DevOps extension
az extension add --name azure-devops

Authentication

# Login with PAT token
az devops login --organization https://dev.azure.com/{org} --token YOUR_PAT_TOKEN

# Set default organization and project (avoids repeating --org/--project)
# Note: Legacy URL https://{org}.visualstudio.com should be replaced with https://dev.azure.com/{org}
az devops configure --defaults organization=https://dev.azure.com/{org} project={project}

# List current configuration
az devops configure --list

CLI Structure

az devops          # Main DevOps commands
├── admin          # Administration (banner)
├── extension      # Extension management
├── project        # Team projects
├── security       # Security operations
│   ├── group      # Security groups
│   └── permission # Security permissions
├── service-endpoint # Service connections
├── team           # Teams
├── user           # Users
├── wiki           # Wikis
├── configure      # Set defaults
├── invoke         # Invoke REST API
├── login          # Authenticate
└── logout         # Clear credentials

az pipelines       # Azure Pipelines
├── agent          # Agents
├── build          # Builds
├── folder         # Pipeline folders
├── pool           # Agent pools
├── queue          # Agent queues
├── release        # Releases
├── runs           # Pipeline runs
├── variable       # Pipeline variables
└── variable-group # Variable groups

az boards          # Azure Boards
├── area           # Area paths
├── iteration      # Iterations
└── work-item      # Work items

az repos           # Azure Repos
├── import         # Git imports
├── policy         # Branch policies
├── pr             # Pull requests
└── ref            # Git references

az artifacts       # Azure Artifacts
└── universal      # Universal Packages

Reference Files

Read the relevant reference file based on the user's task. Each file contains complete command syntax and examples for its domain.

File When to read Covers
references/repos-and-prs.md Repos, branches, pull requests, branch policies Repositories, Import, PRs (create/list/vote/reviewers/policies), Git refs, Branch policies
references/pipelines-and-builds.md Pipelines, builds, releases, artifacts Pipelines CRUD, runs, builds, releases, artifacts download/upload
references/boards-and-iterations.md Work items, sprints, area paths Work items (WIQL/create/update/relations), Area paths, Iterations, Team iterations
references/variables-and-agents.md Pipeline variables, agent pools Pipeline variables, Variable groups, Pipeline folders, Agent pools/queues
references/org-and-security.md Projects, teams, users, permissions, wikis Projects, Extensions, Teams, Users, Security groups/permissions, Service endpoints, Wikis, Admin
references/advanced-usage.md Output formatting, JMESPath queries Output formats, JMESPath queries (basic + advanced), Global args, Common params, Git aliases
references/workflows-and-patterns.md Automation scripts, best practices, error handling Common workflows, Best practices, Error handling, Scripting patterns, Real-world examples
Files8
8 files · 51.8 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

78

Quality

88

Clarity

85

Completeness

80

Summary

Azure DevOps CLI skill provides comprehensive command reference and scripting patterns for managing Azure DevOps resources including projects, repositories, pipelines, boards, artifacts, and security. The skill includes prerequisite installation instructions, authentication setup, a detailed CLI structure reference, and seven supporting markdown files with complete command syntax, examples, and real-world workflow patterns.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Destructive Operation
SEC-002Privilege Escalation

Privilege escalation (sudo)

SKILL.mdsudo b

Detected Capabilities

shell command executionenvironment variable accessoutbound http requestssensitive credential handlingdata transformation and filteringremote api invocation

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

azure devops climanage devops projectsci/cd pipeline automationpull request workflowsazure pipelinesdevops work itemsbranch policies

Risk Signals

WARNING

Privilege escalation (sudo) in installation instructions

SKILL.md, Prerequisites section
WARNING

PAT token authentication requires secrets management

SKILL.md, Authentication section and references/workflows-and-patterns.md
WARNING

Pipe-to-shell pattern in Linux installation (curl | sudo bash)

SKILL.md, Prerequisites section
WARNING

Environment variable access to credentials (AZURE_DEVOPS_EXT_PAT, service principal keys)

references/workflows-and-patterns.md, Service Connection Automation section
INFO

Network requests to Azure management and DevOps endpoints

SKILL.md, Referenced Domains section (dev.azure.com, management.azure.com)

Referenced Domains

External domains referenced in skill content, detected by static analysis.

aka.msdev.azure.comgithub.commanagement.azure.com{org}.visualstudio.com

Use Cases

  • manage azure devops projects and teams
  • create and monitor ci/cd pipelines
  • automate pull request workflows
  • bulk manage work items and iterations
  • orchestrate multi-environment deployments
  • configure repository policies and branch protections
  • automate artifact publishing and downloads
  • set up idempotent infrastructure-as-code scripts

Quality Notes

  • Comprehensive command reference with 7 well-organized supporting files covering all major Azure DevOps domains
  • Clear section hierarchies with table of contents making it easy for agents to navigate
  • Extensive real-world workflow examples demonstrating best practices, error handling, and idempotent patterns
  • Good documentation of authentication methods including PAT tokens and environment variable usage
  • Excellent edge case coverage including retry logic, permission error handling, and graceful degradation patterns
  • Clear scope boundaries—skill focused on Azure DevOps CLI without attempting to cover Azure resource management broadly
  • Supporting files present and complete with examples for pipelines, boards, repos, variables, organization management, advanced queries
  • Prerequisite installation instructions clearly documented with platform-specific options (macOS, Linux)
Model: claude-haiku-4-5-20251001Analyzed: Jun 26, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add github/azure-devops-cli to your library

Command Palette

Search for a command to run...