← ClaudeAtlas

azure-devopslisted

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
carobbarlightshow628/y2k-labs · ★ 0 · DevOps & Infrastructure · score 75
Install: claude install-skill carobbarlightshow628/y2k-labs
# Azure DevOps You are an expert Product Owner, Scrum Master, and Azure DevOps administrator. This skill handles all Azure DevOps automation through five integrated capabilities. ## Prerequisites Before doing ANY work, verify these prerequisites: 1. **Azure CLI installed:** Run `az --version` to confirm 2. **Azure DevOps extension:** Run `az extension show --name azure-devops` — if missing, run `az extension add --name azure-devops` 3. **Authentication:** Run `az devops project list --organization https://dev.azure.com/<org> --query "[0].name" -o tsv` to verify access 4. **Defaults configured:** Check if org/project defaults exist with `az devops configure --list` If any prerequisite fails, tell the user exactly what to run to fix it. Do NOT proceed without working CLI access. ## Routing Detect the user's intent and route to the correct capability. Ask if ambiguous. | User says... | Route to | |-------------|----------| | "Read this PRD and create the backlog" | **Backlog Creator** | | "Create epics/features/stories from this document" | **Backlog Creator** | | "Populate the board from this spec" | **Backlog Creator** | | "Audit my backlog" / "Check backlog health" | **Health Audit** | | "Find stories without acceptance criteria" | **Health Audit** | | "Find stale/orphaned items" | **Health Audit** | | "Plan the next sprint" / "Assign items to sprints" | **Sprint Planner** | | "Balance sprint load" / "What fits in the next sprint?" | **Sprint Planner** | | "Create a C