microsoft/pipelines-build-summary
List, inspect, and troubleshoot Azure DevOps pipeline builds. Shows recent builds for a pipeline definition, drills into a specific build's status and result, displays logs for failed steps, and lists the changes associated with a build.
npx skills add https://github.com/microsoft/azure-devops-skills --skill pipelines-build-summary
This skill works in the context of a project. A pipeline definition or build ID is optional and depends on what the user asks.
core_list_projects.core_list_projects to return a list of projects the user can choose from.pipelines_definition with action list and a name filter to find it.pipelines_definition with action list to list available definitions for the user to choose from.Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.
core_list_projects: Get a list of projects in the organization.pipelines_definition (action: list): Get a list of build/pipeline definitions for a project.pipelines_build (action: list): Get a list of builds, optionally filtered by definition, branch, or status.pipelines_build (action: get_status): Get the status and result of a specific build by ID.pipelines_build_log (action: list): Get the list of logs for a specific build.pipelines_build_log (action: get_content): Get a specific log by log ID for a build (use to retrieve failed step logs).pipelines_build (action: get_changes): Get the commits/changes associated with a specific build.pipelines_build with action list filtered by the definition ID.branchName, statusFilter, or resultFilter if the user specifies (for example, "failed builds on main").pipelines_build with action get_status with that build ID.pipelines_build_log with action list to get the list of all log entries for the build.pipelines_build_log with action get_content for the relevant failed log entries to retrieve the actual log content.pipelines_build with action get_changes with the build ID.When displaying build lists, show the following in a table:
{buildId}MM/DD/YYYY HH:MMWhen displaying a single build's status, show all the above fields plus:
MM/DD/YYYY HH:MMWhen displaying changes, show in a table:
Take microsoft/pipelines-build-summary 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.