azure-devops

Solid

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.

DevOps & Infrastructure 318 stars 31 forks Updated 1 months ago Apache-2.0

Install

View on GitHub

Quality Score: 88/100

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

Skill Content

# Azure DevOps Full Azure DevOps integration using OAuth or PAT authentication and REST API v7.1. ## First-Time Setup ### Option 1: OAuth (Recommended) Login with OAuth device code flow (shows "Visual Studio Code" prompt): ```bash python scripts/auth.py login --org MyOrganization ``` Follow the URL and enter the device code to authorize. Tokens auto-refresh. ### Option 2: PAT Login with a Personal Access Token: ```bash python scripts/auth.py login --org MyOrganization --pat YOUR_PAT ``` Create a PAT at `https://dev.azure.com/{org}/_usersSettings/tokens` with these scopes: - **Work Items**: Read & Write - **Code**: Read & Write (for repos/PRs) - **Build**: Read & Execute (for pipelines) - **Wiki**: Read & Write - **Test Management**: Read & Write - **Advanced Security**: Read (for security alerts) - **Project and Team**: Read - **Identity**: Read (for user search) ### Common Commands Check authentication status: ```bash python scripts/auth.py status ``` Logout: ```bash python scripts/auth.py logout ``` ## Core (scripts/core.py) ```bash # List all projects python scripts/core.py list-projects python scripts/core.py list-projects --top 10 # List teams in a project python scripts/core.py list-teams --project MyProject # Search for a user identity python scripts/core.py get-identity --search "john@example.com" ``` ## Work Items (scripts/work_items.py) ```bash # Get a work item python scripts/work_items.py get --project MyProject --id 123 python scripts/work_items.p...

Details

Author
sanjay3290
Repository
sanjay3290/ai-skills
Created
5 months ago
Last Updated
1 months ago
Language
Python
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

DevOps & Infrastructure Solid

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.

34,887 Updated today
github
DevOps & Infrastructure Listed

autoxpp-azure-devops

Use when the user asks to read, query, or interact with Azure DevOps work items, tickets, comments, attachments, or boards. Triggers on phrases like "read ticket", "check devops", "work item", "devops comments", "ticket 1069", or any Azure DevOps URL (dev.azure.com).

0 Updated 3 days ago
xplusplusai
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