Agent skill · DevOps & Cloud

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.

GitHub68,948★ · +463/wk · 2 repos on radarProfile →
copilotMIT
Install
npx skills add github/awesome-copilot --skill azure-devops-cli --agent copilot

Same command for any agent — swap --agent for claude-code, codex, cursor.

Facts
Files in the skill folder: 9
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/azure-devops-cli/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 37,432 · +281 this week
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 ```bash # 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 ```bash # 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

What's inside
Steps it walks through
  1. Prerequisites
  2. Authentication
  3. CLI Structure
  4. Reference Files
Ships with 8 files
  • references/advanced-usage.md
  • references/boards-and-iterations.md
  • references/long-comments-on-windows.md
  • references/org-and-security.md
  • references/pipelines-and-builds.md
  • references/repos-and-prs.md
  • references/variables-and-agents.md
  • references/workflows-and-patterns.md
Commands it runs
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
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)
az devops configure --defaults organization=https://dev.azure.com/{org} project={project}
List current configuration
More from awesome-copilot
All skills →
About this skill
What does the azure-devops-cli skill do?

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.

How do I install it?

Run `npx skills add github/awesome-copilot --skill azure-devops-cli --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going