Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Azure DevOps Full Integration

Drive all of Azure DevOps — work items, PRs, pipelines, wikis, test plans, policies — through natural language in Claude Code.

Dev & CodingIntermediate40343AI score 9/10Last updated: Jul 9, 2026

What it does

  • Wraps Azure DevOps REST API v7.1 in a set of Python scripts exposing 99 operations across 13 domains, each with a ready-to-run CLI example.
  • Authenticates via OAuth device code flow or a Personal Access Token; credentials are stored in the OS keyring (macOS Keychain, Windows Credential Locker, Linux Secret Service).
  • Coverage: projects/teams and identity lookup, work items (create, update, link, comment, WIQL, saved queries, recycle bin), repos and pull requests (branches, diffs, reviewers, threads, complete/abandon), sprint iterations and team capacity, pipelines (run, logs, artifacts, stage retry, cancel), code/wiki/work-item search, wiki page editing, test plans and results, Advanced Security alerts, variable groups (incl. secrets), environments and deployment approvals, branch policies, and work item attachments.
  • Includes reference tables for common work item fields and link types.

Who it's for

  • Developers, scrum masters and PMs running sprints in Azure DevOps.
  • DevOps engineers tired of clicking through the web UI to review PRs, rerun pipelines and approve deployments.
  • Team leads automating backlog grooming and release reporting.

Example uses

  1. "Show my open work items in Sprint 1 and move the finished ones to Closed" → work_items.py my-items then update.
  2. "Open a PR from feature/login into main and add two reviewers" → repos.py create-pr + add-reviewer.
  3. "List pending Production approvals and approve the release" → environments.py list-approvalsapprove.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/sanjay3290/ai-skills/HEAD/skills/azure-devops/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/azure-devops folder from the GitHub repo sanjay3290/ai-skills into my ~/.claude/skills/azure-devops/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/sanjay3290/ai-skills.git /tmp/ai-skills && mkdir -p ~/.claude/skills && cp -r /tmp/ai-skills/skills/azure-devops ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Make sure Python 3 and git are installed (python --version).
  2. Clone the repo: git clone https://github.com/sanjay3290/ai-skills.git
  3. Copy the skill into place: mkdir -p ~/.claude/skills && cp -r ai-skills/skills/azure-devops ~/.claude/skills/
  4. Install Python dependencies (requests, keyring, etc.); if the skill folder ships a requirements file run pip install -r requirements.txt.
  5. Authenticate from the skill folder: python scripts/auth.py login --org MyOrganization (or add --pat YOUR_PAT).
  6. Verify with python scripts/auth.py status.
  7. Restart Claude Code and try a prompt like "list my Azure DevOps work items".
  8. If using a PAT, grant only the minimum scopes you need (Work Items, Code, Build, Wiki as applicable) and rotate it regularly.
View source on GitHubLicense: Apache-2.0