azure-devops-cli

Solid

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.

DevOps & Infrastructure 34,887 stars 4287 forks Updated today MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 ├── invoke # Invoke REST API ├── login # Authenticate └── logout # Clear credentials az pipelines # Azure Pipelines ├── agent # Agents ├── build # Builds ├──...

Details

Author
github
Repository
github/awesome-copilot
Created
1 years ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

DevOps & Infrastructure Solid

azure-devops

Manage Azure DevOps projects, work items, repos, PRs, pipelines, wikis, test plans, security alerts, variable groups, environments/approvals, branch policies, and attachments. Use when user asks to: manage sprints, create/update work items, list repos, create PRs, run pipelines, search code, manage wiki pages, check security alerts, manage variable groups, approve deployments, or configure branch policies. Covers 13 domains with 99 tools via REST API.

318 Updated 1 months ago
sanjay3290
AI & Automation Listed

az-cli

Operate Azure resources from the command line using the az CLI

47 Updated today
itlackey
DevOps & Infrastructure Listed

azure-devops

Complete Azure DevOps automation skill. Routes to the right capability based on user intent. Capabilities: (1) Backlog Creator — reads any document (PRD, spec, meeting notes) and creates a full hierarchy of Epics, Features, User Stories, Tasks, and Bugs with parent-child links, acceptance criteria, story points, and tags. (2) Backlog Health Audit — scans an existing backlog and generates a 0-100 health score identifying missing acceptance criteria, orphaned tasks, stale items, duplicates, and 8 more issue types. (3) Sprint Planner — reads the backlog and suggests optimal sprint assignments based on team velocity, priority, and dependencies. (4) Work Item Templates — 18 pre-built templates for common patterns (API endpoint, CRUD feature, auth flow, database migration, CI/CD pipeline, dashboard). (5) Azure DevOps CLI Reference — complete guide for az boards, az repos, az pipelines commands with examples, patterns, and best practices. Use when: creating a backlog, populating a board, converting documents to work

0 Updated today
carobbarlightshow628