Get active work items for a team showing dependencies, priorities, and sprint assignments. Displays items that are blocking others, high priority items first, and items due this sprint. Shows parent/child hierarchy with Title, State, Priority, ChangedDate, Iteration Name, and Iteration End Date.
npx skills add https://github.com/microsoft/azure-devops-skills --skill boards-team-active-work
This skill retrieves the team's Requirements-level backlog, filters to Active items assigned to the current user, enriches them with parent/child details and dependency information, and displays them sorted by blocking status and priority with sprint information.
core_list_projects.core_list_projects to return a list of projects the user can choose from.core_list_project_teams.core_list_project_teams for the selected project so the user can pick a team.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.work (action: list_team_iterations): Get the list of iterations for a team, including current sprint information.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, children, and dependencies in as few calls as possible.work with action list_team_iterations for the resolved project and team with timeframe=current to get the current sprint information. Store the current iteration path and end date for filtering and display purposes.wit_backlog with action list_work_items for the resolved project and team, using backlog level Microsoft.RequirementCategory (the Requirements / Product Backlog Items level).System.State = Activewit_work_item with action get_batch for all filtered item IDs with expand=relations and the following fields:System.IdSystem.TitleSystem.StateSystem.AssignedToSystem.WorkItemTypeSystem.ChangedDateSystem.IterationPathMicrosoft.VSTS.Common.PrioritySystem.Parentrelations of each item, collect:System.LinkTypes.Hierarchy-Reverse)System.LinkTypes.Hierarchy-Forward)System.LinkTypes.Dependency-Forward) and items that depend on this work item (System.LinkTypes.Dependency-Reverse)System.LinkTypes.Related)wit_work_item with action get_batch once with the combined set of all related IDs (excluding any IDs already fetched) to get their:System.IdSystem.TitleSystem.StateSystem.IterationPathSystem.LinkTypes.Dependency-Reverse relations (other items depend on this one)System.IterationPath matches the current iteration from step 2Microsoft.VSTS.Common.Priority value10. Display the results as described in the Display results section below.
First, display the current sprint information:
> Current Sprint: {Iteration Name} (ends {Iteration Finish Date formatted as MM/DD/YYYY})
Then, sort and group the work items in the following order:
System.LinkTypes.Dependency-Reverse relations) — sorted by Priority ascending (Priority 1 first)For each item, display:
{If blocking, show: ⚠️ BLOCKING OTHER WORK ITEMS}
| Field | Value |
|---|---|
| State | {System.State} |
| Priority | {Microsoft.VSTS.Common.Priority} |
| Changed Date | {System.ChangedDate formatted as MM/DD/YYYY} |
| Iteration | {last segment of System.IterationPath} |
| Iteration End Date | {Iteration Finish Date from step 2 if in current sprint, otherwise look up from team iterations} |
| Work Item Type | {System.WorkItemType} |
Parent:
{ParentID} {Parent Title}Child Items:
If there are child items, display them in a table:
| ID | Title | State |
|----|-------|-------|
| {ChildID} | {Child Title} | {Child State} |
If there are no child items, display: *(none)*
Dependencies:
If this item is blocking others (has System.LinkTypes.Dependency-Reverse relations), show:
⚠️ Blocking:
If this item depends on others (has System.LinkTypes.Dependency-Forward relations), show:
Depends on:
If there are no dependencies, display: *(none)*
After all items are listed, display a summary:
> Summary:
> - Total active items for the team: {N}
> - Items blocking others: {M}
> - High priority items (1-2): {P}
> - Items due this sprint: {Q}
>
> Team: {team name} | Project: {project name}
Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take microsoft/boards-team-active-work from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.