Complete Azure DevOps automation - boards, repos, pipelines, artifacts
View on GitHub.claude/skills/azure-devops/SKILL.md
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/rysweet/amplihack/blob/main/.claude/skills/azure-devops/SKILL.md -a claude-code --skill azure-devopsInstallation paths:
.claude/skills/azure-devops/# Azure DevOps Skill Complete Azure DevOps integration covering boards, repositories, pipelines, and artifacts. **Auto-activates when:** User mentions Azure DevOps, ADO, work items, boards, repos, pipelines, artifacts, or Azure DevOps URLs. ## Purpose This skill provides comprehensive guidance for Azure DevOps automation through purpose-built Python CLI tools that handle: ### Work Items (Boards) - Work item creation with HTML-formatted descriptions - Work item updates (state, assignments, fields) - Work item deletion with confirmation - Parent-child relationship linking - WIQL query execution - Work item type and field discovery ### Repositories - Repository listing with details - Pull request creation with reviewers and work items - Branch validation - Clone URL access ### Pipelines - Pipeline listing and execution - Build monitoring and logs - Deployment management ### Artifacts - Package feed management - Package publishing and downloading - Version management ## Quick Start ### 1. Authentication First **ALWAYS start by checking authentication:** ```bash python .claude/scenarios/az-devops-tools/auth_check.py --auto-fix ``` This verifies Azure CLI is installed, you're logged in, org/project are configured, and you have access. See: [@authentication.md] ### 2. Common Operations #### Create Work Item ```bash python .claude/scenarios/az-devops-tools/create_work_item.py \ --type "User Story" \ --title "Implement feature" \ --description @story.md ``` #### Query Work Items ```bash python .claude/scenarios/az-devops-tools/list_work_items.py --query mine ``` #### Create Pull Request ```bash python .claude/scenarios/az-devops-tools/create_pr.py \ --source feature/branch \ --target main \ --title "Add feature" ``` ## Progressive Loading References For detailed guidance on specific operations, see: - [@authentication.md] - Authentication methods (PAT, OAuth, environment variables) - [@work-items.md] - Work item CRUD operations, field