Stats
Actions
Tags
How this command is triggered — by the user, by Claude, or both
Slash command
/ado-work-items:itemsbacklogs/This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Backlog Work Items Get work items in a specific backlog level. ## Get Backlog Items Common backlog IDs: - `Microsoft.EpicCategory` - Epics - `Microsoft.FeatureCategory` - Features - `Microsoft.RequirementCategory` - Stories/PBIs ## Example: Get Stories Backlog ## Response Format Returns work item references with: - `target.id` - Work item ID - `target.url` - API URL to get full item To get full details, use the IDs with `az boards work-item show` or batch get. ## Get Items with Order The response includes `rel` field showing parent relationships if items are nested. ## Pagin...
Get work items in a specific backlog level.
az devops invoke \
--area work \
--resource backlogs \
--route-parameters project={PROJECT} team={TEAM} backlogId={BACKLOG_ID} \
--resource workitems \
--api-version 7.1 \
-o json
Common backlog IDs:
Microsoft.EpicCategory - EpicsMicrosoft.FeatureCategory - FeaturesMicrosoft.RequirementCategory - Stories/PBIsaz devops invoke \
--area work \
--resource backlogs \
--route-parameters project={PROJECT} team={TEAM} backlogId=Microsoft.RequirementCategory \
--query-parameters "\$top=50" \
--api-version 7.1 \
-o json
Returns work item references with:
target.id - Work item IDtarget.url - API URL to get full itemTo get full details, use the IDs with az boards work-item show or batch get.
The response includes rel field showing parent relationships if items are nested.
Use query parameters:
$top - Number of items to return$skip - Number to skip (for paging)For more control, use WIQL:
az boards query --wiql "SELECT [System.Id], [System.Title], [Microsoft.VSTS.Common.BacklogPriority] FROM WorkItems WHERE [System.WorkItemType] = 'User Story' AND [System.AreaPath] UNDER '{TEAM_AREA}' ORDER BY [Microsoft.VSTS.Common.BacklogPriority]"
npx claudepluginhub joshuaramirez/claude-code-plugins --plugin ado-work-items/pickup-azure-devopsExecutes Azure DevOps board workflows — listing work items, detecting collisions, updating states, and creating pull requests with work item linkages.