boards-backlog-summary

Get the team's Requirements-level backlog (Product Backlog Items and Bugs) filtered to Active items assigned to the current user. Shows parent/child hierarchy…

npx skills add https://github.com/microsoft/azure-devops-skills --skill boards-backlog-summary

Get team backlog summary

This skill retrieves the team's Requirements-level backlog, filters to Active items assigned to the current user, enriches them with parent and child work item details, and displays them sorted by priority.

Project selection

  • If the user provides a project name in their request (for example, "for Contoso"), use that project directly and do not call core_list_projects.
  • If the project name is not provided, ask the user once to provide it.
  • If the project name is still not provided after asking once, call core_list_projects to return a list of projects the user can choose from.
  • Do not continue if no project has been provided or selected.

Team selection

  • If the user provides a team name, use it directly and do not call core_list_project_teams.
  • If the team name is not provided, ask the user once to provide it.
  • If the team name is still not provided after asking once, call core_list_project_teams for the selected project so the user can pick a team.
  • Do not continue if no team has been provided or selected.

Tools

Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.

  • core_list_projects: Get the list of projects the user can choose from.
  • core_list_project_teams: Get the list of teams for a project.
  • wit_backlog (action: list_work_items): Get the work items on the team's backlog at a specific backlog level.
  • wit_work_item (action: get_batch): Get work item details in batch by their IDs. Use this to fetch fields and relations for backlog items, their parents, and their children in as few calls as possible.

Steps

  1. Resolve project and team using the rules above.

  2. Call wit_backlog with action list_work_items for the resolved project and team, using backlog level Microsoft.RequirementCategory (the Requirements / Product Backlog Items level).

  3. From the returned work items, filter to items that meet all of the following criteria:

    • System.State = Active
    • System.AssignedTo matches the current user
    • System.WorkItemType is one of: Product Backlog Item, Bug
  4. If no items match the filter, display a message stating there are no active backlog items assigned to the current user for this team and stop.

  5. Call wit_work_item with action get_batch for all filtered item IDs with expand=relations and the following fields:

    • System.Id
    • System.Title
    • System.State
    • System.AssignedTo
    • System.WorkItemType
    • System.ChangedDate
    • System.IterationPath
    • Microsoft.VSTS.Common.Priority
    • System.Parent
  6. From the relations of each item, collect all parent IDs (System.LinkTypes.Hierarchy-Reverse) and child IDs (System.LinkTypes.Hierarchy-Forward). Call wit_work_item with action get_batch once with the combined set of those IDs (excluding any IDs already fetched) to get their System.Id, System.Title, and System.State.

  7. Display the results as described in the Display results section below.

Display results

Sort all items by Microsoft.VSTS.Common.Priority ascending (Priority 1 first). For each item, display:


{ID} — {Title}

FieldValue
State{System.State}
Priority{Microsoft.VSTS.Common.Priority}
Changed Date{System.ChangedDate formatted as MM/DD/YYYY}
Iteration{last segment of System.IterationPath}
Work Item Type{System.WorkItemType}

Parent:

  • If a parent exists: {ParentID} {Parent Title}
  • If no parent exists: (none)

Child Items:

If there are child items, display them in a table:

IDTitleState
{ChildID}{Child Title}{Child State}

If there are no child items, display: (none)


After all items are listed, display a summary line:

Showing {N} active backlog item(s) assigned to you on team {team name} in project {project name}.

More skills from microsoft

oss-growth
microsoft
OSS growth hacker persona
agent-framework-azure-ai-py
microsoft
Build Azure AI Foundry agents using the Microsoft Agent Framework Python SDK (agent-framework-azure-ai). Use when creating persistent agents with AzureAIAgentsProvider, using hosted tools (code interpreter, file search, web search), integrating MCP servers, managing conversation threads, or implementing streaming responses. Covers function tools, structured outputs, and multi-tool agents.
development
airunway-aks-setup
microsoft
Set up AI Runway on AKS — from bare cluster to running model. Covers cluster verification, controller install, GPU assessment, provider setup, and first deployment. WHEN: "setup AI Runway", "onboard AKS cluster", "install AI Runway", "airunway setup", "deploy model to AKS", "GPU inference on AKS", "KAITO setup on AKS", "run LLM on AKS", "vLLM on AKS", "set up model serving on AKS", "AI Runway controller".
devops
appinsights-instrumentation
microsoft
Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.
devops
applicationinsights-web-ts
microsoft
Instrument browser/web apps with the Application Insights JavaScript SDK (@microsoft/applicationinsights-web). Use for Real User Monitoring (RUM) — page views, clicks, AJAX/fetch dependencies, exceptions, custom events, and browser-side GenAI agent traces correlated to backend OpenTelemetry traces. Covers SDK Loader Script and npm setup, framework extensions (React, React Native, Angular), Click Analytics, telemetry initializers, and OTel GenAI semantic conventions for agent/tool/model spans emitted from the browser.
devops
azure-ai-anomalydetector-java
microsoft
Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate/multivariate anomaly detection, time-series analysis, or AI-powered monitoring.
development
azure-ai-language-conversations-py
microsoft
Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 for Python. Use for ML workspaces, jobs, models, datasets, compute, and pipelines. Triggers: "azure-ai-ml", "MLClient", "workspace", "model registry", "training jobs", "datasets".
development