How this command is triggered — by the user, by Claude, or both
Slash command
/ado-work-items:listbacklogs/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
# List Backlogs Get all backlog levels for a team. ## Get Backlogs ## Response Format Returns array of backlog levels: Key fields: - `id` - Backlog category ID - `name` - Display name - `rank` - Order (1 = highest level) - `workItemTypes` - Work item types in this backlog ## Get Specific Backlog Configuration This returns detailed configuration including: - Portfolio backlog levels - Requirement backlog level - Task backlog level - Bug behavior settings
Get all backlog levels for a team.
az devops invoke \
--area work \
--resource backlogs \
--route-parameters project={PROJECT} team={TEAM} \
--api-version 7.1 \
-o json
Returns array of backlog levels:
{
"value": [
{
"id": "Microsoft.EpicCategory",
"name": "Epics",
"rank": 1,
"workItemTypes": [{"name": "Epic"}]
},
{
"id": "Microsoft.FeatureCategory",
"name": "Features",
"rank": 2,
"workItemTypes": [{"name": "Feature"}]
},
{
"id": "Microsoft.RequirementCategory",
"name": "Stories",
"rank": 3,
"workItemTypes": [{"name": "User Story", "name": "Bug"}]
}
]
}
Key fields:
id - Backlog category IDname - Display namerank - Order (1 = highest level)workItemTypes - Work item types in this backlogaz devops invoke \
--area work \
--resource backlogconfiguration \
--route-parameters project={PROJECT} team={TEAM} \
--api-version 7.1 \
-o json
This returns detailed configuration including:
npx claudepluginhub joshuaramirez/claude-code-plugins --plugin ado-work-items/statusSummarizes project state, backlog health, and next work items. Also supports per-feature and backlog-only subcommands.
/newManages backlog items across files, GitHub Issues, Linear, or Beads backends. Supports add, list, update, complete actions.
/pm-backlogManages project task backlog: shows health summary (status/priority/INVEST issues); grooms (refines/splits large tasks), prioritizes, reestimates via flags.
/backlogFinds suitable JIRA tickets from the backlog by analyzing priority and activity, selecting unassigned or bot-assigned tickets across Critical, High, Normal, and Low priorities.
/listLists all installed and generated CLI-Anything tools with version, status, and path. Supports custom scan directories and JSON output.
/listLists all configured hookify rules in the project by scanning .claude/hookify.*.local.md files and displaying their frontmatter, status, and message previews in a table.