
Boards Work Item Summary
- 68 installs
- 31 repo stars
- Updated July 16, 2026
- microsoft/azure-devops-skills
boards-work-item-summary is an agent skill that summarizes one Azure DevOps work item with links, pull requests, and comments via MCP tools.
About
The boards-work-item-summary skill fetches and presents a single Azure DevOps work item using Azure DevOps MCP Server tools. It always requires one work item ID: use a user-provided ID directly, prompt once if missing, and stop with a clear message if still absent. The workflow calls wit_get_work_item with expand=all, batches linked parent, child, and related IDs through wit_get_work_items_batch_by_ids, and loads comments with wit_list_work_item_comments. Results show Id, Title, State, Assigned To display name, Work Item Type, Created Date as MM/DD/YYYY, Priority, and Tags. A Links table groups parent, child, related, and other relations with clickable dev.azure.com hyperlinks. Pull requests appear in a separate table when artifact links exist. The skill adds a plain-language summary of description and repro steps plus a comment overview with total count and themes, or states when no comments exist. Use when developers need a structured work item briefing from Azure Boards without manual portal navigation.
- Requires a single work item ID and stops if the user does not supply one after prompting.
- Fetches fields, relations, and links in one wit_get_work_item expand=all call.
- Batch-loads linked work items and groups Parent, Child, and Related links in order.
- Lists linked pull requests in a separate table when artifact relations exist.
- Summarizes description, repro steps, and comment themes in plain language.
Boards Work Item Summary by the numbers
- 68 all-time installs (skills.sh)
- Ranked #1,510 of 3,301 Productivity & Planning skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 25, 2026 (Skillselion catalog sync)
boards-work-item-summary capabilities & compatibility
- Capabilities
- single work item fetch with expand=all · batch linked work item resolution · grouped links and pr tables · comment count and theme overview · plain language description summary
- Works with
- azure · azure devops
- Use cases
- project management
What boards-work-item-summary says it does
Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.
npx skills add https://github.com/microsoft/azure-devops-skills --skill boards-work-item-summaryAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 68 |
|---|---|
| repo stars | ★ 31 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 16, 2026 |
| Repository | microsoft/azure-devops-skills ↗ |
How do I get a structured summary of an Azure DevOps work item including links and comments?
Summarize one Azure DevOps work item by ID with linked items, pull requests, and comments via MCP tools.
Who is it for?
Developers triaging Azure DevOps work items who need linked context and comment themes in one view.
Skip if: Skip for creating iterations, bulk board queries, or work items without a known ID.
When should I use this skill?
User asks to summarize, review, or explain a specific Azure DevOps work item by ID.
What you get
A formatted work item report with key fields, linked items, PRs, and a plain-language summary.
Files
Get work item
This skill always works with one specific work item ID.
- If the user provides an ID (for example: "for 115770" or "work item 115770"), use that ID directly.
- If the user does not provide an ID, prompt the user once to provide the work item ID.
- If the ID is still not provided after prompting, stop and return a clear message stating that a work item ID is required and do not call any tools.
Tools
Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.
wit_get_work_item: Get a work item from Azure DevOps by its ID.wit_list_work_item_comments: Get the list of comments for a work item by its ID.wit_get_work_items_batch_by_ids: Get work item details in batch by their IDs. Use this tool to get the details of linked work items, using the links returned fromwit_get_work_item.
Steps
1. Call wit_get_work_item with expand=all for the requested ID so that you retrieve fields, relations, and links in a single call.
2. If the work item has a parent (for example, System.Parent or a System.LinkTypes.Hierarchy-Reverse relation), include the parent ID in the set of linked IDs to summarize. You do not need a separate wit_get_work_item call for the parent; instead, rely on wit_get_work_items_batch_by_ids in the next step.
3. From the work item relations array, collect all linked work item IDs (parent, child, related, and any others). Call wit_get_work_items_batch_by_ids once with that list of IDs to get the details of all linked work items.
4. Call wit_list_work_item_comments once to get the comments for the original work item.
Display results
When displaying the results:
- Show the following fields for the main work item: Id, Title, State, Assigned To (just the display name, not the email), Work Item Type, Created Date formatted as
MM/DD/YYYY, Priority, and Tags.
- Provide a Links table. For each linked work item, display:
- Id as a clickable hyperlink in this exact format:
[{ID}](https://dev.azure.com/{organization}/{project}/_workitems/edit/{ID}) - Link type (for example: Parent, Child, Related, or the underlying relation name)
- Work item type
- Title
- State
Group and order the rows in this sequence: Parent links first, then Child links, then Related links, then any other link types.
- If there are pull requests linked to the work item (for example, via artifact links or specific PR relations), list them in a separate Pull Requests table with at least the PR ID, title, status, and a clickable link to the PR.
- Provide a short, plain-language summary of the work item’s description, system information, and repro steps (if those fields exist). Focus on the key intent, scope, and any critical technical or repro details.
- For comments:
- If there are one or more comments, state the total number of comments and give a brief overview of the main themes or decisions mentioned.
- If there are no comments, explicitly state that there are no comments for this work item.
Related skills
FAQ
What does boards-work-item-summary produce?
A structured report with work item fields, grouped links, pull requests, description summary, and comment overview.
When should I use boards-work-item-summary?
When you have a work item ID and need linked items, PRs, and comments summarized from Azure DevOps.
Is boards-work-item-summary safe to install?
Review the Security Audits panel on this page before installing in production.