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.
npx claudepluginhub joshuacastanedaah/sean-mcp-servers --plugin azure-devopsThis skill uses the workspace's default tool permissions.
- User asks to create, update, or query work items (user stories, tasks, bugs, features, epics)
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.
Manages Azure DevOps projects, work items, repos, PRs, pipelines, wikis, test plans, security alerts, variable groups, environments, branch policies via Python CLI and REST API.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Share bugs, ideas, or general feedback.
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 history