
Azure DevOps CLI
OfficialFreeManage Azure DevOps resources directly from your command line.
Free · Opens the source repo
What Azure DevOps CLI does
The Azure DevOps CLI skill allows users to manage various Azure DevOps resources through the Azure Command-Line Interface (CLI). This skill is particularly useful for developers and DevOps engineers who need to automate tasks related to projects, repositories, pipelines, and builds without relying on the web interface. By utilizing az commands, users can streamline their workflows and integrate Azure DevOps operations into their CI/CD processes efficiently.
To get started, users must install the Azure CLI and the Azure DevOps extension. Once set up, users can authenticate using a Personal Access Token (PAT) and configure default settings to simplify command usage. The CLI structure is organized into various categories, including administration, project management, security, pipelines, boards, and repositories, allowing users to navigate and execute commands relevant to their tasks easily.
The skill includes comprehensive documentation through reference files that cover specific areas such as repositories and pull requests, pipelines and builds, work items, and security configurations. Each reference file provides command syntax and examples tailored to common scenarios, making it easier for users to find the information they need quickly. This structured approach helps users leverage the full capabilities of Azure DevOps, enhancing productivity and minimizing errors in command execution.
Overall, the Azure DevOps CLI skill is ideal for those who regularly interact with Azure DevOps and seek to automate their workflows through command-line operations. It is particularly beneficial for teams looking to implement DevOps practices and improve their development processes.
When to use it
Use this skill when you need to manage Azure DevOps resources programmatically, especially in automated CI/CD workflows.
When not to use it
This skill may not be suitable for users unfamiliar with command-line interfaces or those who prefer graphical user interfaces for managing Azure DevOps resources.
What you can build with it
Automating CI/CD Pipelines
Use Azure DevOps CLI to automate the creation and management of CI/CD pipelines, improving deployment efficiency.
Managing Repositories and Pull Requests
Quickly create, list, and manage repositories and pull requests directly from the command line.
Configuring Security and Permissions
Easily manage user permissions and security settings for projects and teams within Azure DevOps.
How to install Azure DevOps CLI
View source1. Install with the skills CLI
npx skills add github/awesome-copilot/azure-devops-cli --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by githubAzure 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 |
references/long-comments-on-windows.md | Long --discussion, --description, or --content values failing on Windows | The cmd.exe 8191 char cap on az.cmd, shell detection, and three verified workarounds (azps.ps1, native --file-path, az devops invoke --in-file) |
Frequently asked questions about Azure DevOps CLI
Similar skills
Turborepo
Optimized build system for JavaScript/TypeScript monorepos.
Azure Pipelines Validation
Streamline your Azure DevOps pipeline changes locally.
Azure Developer CLI
Streamline your Azure project workflows with best practices.
Azure Container Registry CLI
Manage Azure Container Registry resources with ease.
Aspire
Build and orchestrate polyglot distributed applications seamlessly.
Vercel CLI
Manage and deploy Vercel projects from the command line.
