From azure-devops
Azure DevOps work item management, sprint planning, and board operations. Use when asked to create, update, query, or manage work items, sprints, iterations, or boards.
How this skill is triggered — by the user, by Claude, or both
Slash command
/azure-devops:devops-boardsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- User asks to create, update, or query work items (user stories, tasks, bugs, features, epics)
Epic
└── Feature
└── User Story
└── Task
Bug (can be at any level)
Microsoft.VSTS.Common.Priority — 1 (Critical), 2 (High), 3 (Medium), 4 (Low)Microsoft.VSTS.Scheduling.StoryPoints — numeric estimateSystem.Tags — semicolon-separated tagsSystem.AreaPath — area pathSystem.IterationPath — iteration/sprint-- Active user stories in current sprint
SELECT [System.Id], [System.Title], [System.State]
FROM WorkItems
WHERE [System.WorkItemType] = 'User Story'
AND [System.State] = 'Active'
AND [System.IterationPath] = @CurrentIteration
-- Bugs assigned to a person
SELECT [System.Id], [System.Title], [System.AssignedTo]
FROM WorkItems
WHERE [System.WorkItemType] = 'Bug'
AND [System.AssignedTo] = 'User Name'
AND [System.State] <> 'Closed'
-- Items modified in the last 7 days
SELECT [System.Id], [System.Title], [System.ChangedDate]
FROM WorkItems
WHERE [System.ChangedDate] >= @Today - 7
ORDER BY [System.ChangedDate] DESC
Common link types:
System.LinkTypes.Hierarchy-Forward — parent/childSystem.LinkTypes.Related — related itemsSystem.LinkTypes.Dependency-Forward — predecessor/successordevops_create_work_item — Create a new work itemdevops_update_work_item — Update fields on an existing work itemdevops_get_work_item — Get full details of a work item by IDdevops_query_work_items — Query work items using WIQLdevops_add_comment — Add a discussion comment (markdown auto-converted to HTML)devops_list_boards — List boards in a projectdevops_move_work_item — Change a work item's statedevops_link_work_items — Create links between work itemsdevops_get_iterations — List iterations/sprintsdevops_assign_work_item — Assign to a team memberdevops_list_team_members — List team membersdevops_get_work_item_history — Get revision historynpx claudepluginhub joshuacastanedaah/sean-mcp-servers --plugin azure-devopsExpert guidance for Azure Boards: managing work items, backlogs, queries, and charts; troubleshooting Office integration and query issues; configuring security, limits, and integrations with GitHub, Excel, Slack, Teams.
Guides creation of Azure DevOps work items (Features, User Stories, Tasks) with hierarchy, HTML formatting, naming conventions, and estimation best practices. For use with @azure-devops/mcp tools.
Epic creation and sprint management - create epics, manage sprints, view backlog, estimate with story points. TRIGGERS: 'create an epic', 'create epic', 'new epic', 'show the backlog', 'view backlog', 'add to sprint', 'move to sprint', 'set story points', 'sprint planning', 'epic for', 'link to epic', 'sprint list', 'active sprint', 'velocity', 'create subtask'. NOT FOR: bugs/tasks/stories without epic context (use jira-issue), field ID discovery (use jira-fields), searching issues by JQL (use jira-search), transitioning issues through workflow (use jira-lifecycle).