build-health

작성자: microsoft

Azure DevOps에서 VS Code 롤링 빌드 상태를 분석합니다. 사용 시점: 롤링 빌드가 현재 빨간색일 때, 최근 100개 빌드에 대한 보고서가 필요할 때, 다음이 필요할 때…

npx skills add https://github.com/microsoft/vscode-team-kit --skill build-health

Build Health

Quickly diagnose the VS Code rolling build (Pipeline 111) on Azure DevOps. This skill has two modes:

  1. Fix the build if it is red right now by finding where the red streak started and identifying the compare range from last green to first red.
  2. Analyze and present the last 100 builds in a predictable report file.

The report file is the primary artifact. Generate it first, summarize what it shows, and only then ask whether the user wants heuristic culprit analysis.

When to Use

  • The rolling build on main is red and you need to find where it broke
  • You need a stable report for the last 100 builds
  • You're the build champ and want a quick health overview
  • You need to separate recurring infra failures from likely code regressions
  • You want to trace a build break back to a narrow compare range

Output Contract

Always produce a markdown report file before presenting conclusions.

  • Default output directory: /tmp/build-health
  • Default report path: /tmp/build-health/build-health-report.md
  • Report format: markdown generated by analyze-builds.mjs --format markdown --report ...

The report must contain these sections:

  • Current Status
  • Build Table — sorted newest → oldest
  • Incidents — sorted newest → oldest, with Incident #1 being the most recent
  • Top Failure Reasons
  • Suggested Next Step

Use the chat reply to summarize the report, not to replace it.

Prerequisites

  • Azure CLI (az) installed and authenticated (az login)
  • Node.js on PATH
  • Network access to dev.azure.com (the fetch script calls Azure DevOps REST APIs)

Shared Setup

The scripts live inside this skill directory at <skill-dir>/scripts/. Always invoke them by absolute path. Derive <skill-dir> from the absolute path of this SKILL.md.

Use these defaults unless the user asks for something else:

OUT_DIR=/tmp/build-health
REPORT_FILE="$OUT_DIR/build-health-report.md"

1. Fetch Build Data

Run the fetch script from this skill directory. It downloads builds, timelines for failed builds, and log tails for failing test/compile tasks — all in parallel batches.

bash <skill-dir>/scripts/fetch-builds.sh --count 100 --out "$OUT_DIR"

Options:

  • --count N — Number of recent builds to fetch (default: 100)
  • --out DIR — Output directory (default: ./build-data)
  • --pipeline ID — Pipeline definition ID (default: 111)
  • --branch NAME — Branch to filter (default: main)

Run this in a terminal with mode=sync and a generous timeout (e.g. 300000ms). The script needs network access, so request unsandboxed execution if sandboxing is enabled.

2. Analyze the Data

Once the data is downloaded, always generate the markdown report file first:

node <skill-dir>/scripts/analyze-builds.mjs "$OUT_DIR" --format markdown --report "$REPORT_FILE"

This runs entirely offline against the downloaded data and produces a predictable artifact that the user can open and consume directly.

If you need a terminal-friendly version for yourself while working, optionally run:

node <skill-dir>/scripts/analyze-builds.mjs "$OUT_DIR" --format text

The markdown report includes:

  1. Per-build status — Each build with pass/fail, failure reasons, error excerpts, and commit links
  2. Break/fix transitions — When the build went red, when it recovered, how long each incident lasted
  3. Error details — Actual error messages from test logs (not just "exited with code 1")
  4. Commit links — GitHub compare URLs between the last green and first red build
  5. Summary — Overall success rate, top failure reasons, current build status

Workflow 1: Build Is Red Right Now

  1. Fetch the last 100 builds and generate the markdown report file.
  2. Read the report first. Do not guess the culprit yet.
  3. Summarize these points in chat:
    • Whether the latest build is still red
    • Which build was the first red build in the current incident
    • The dominant failure pattern from the incident table
    • The compare range from last green to first red, if available
    • The report path
  4. If the oldest build in the current report is already red, fetch a larger window before attempting commit-range analysis.
  5. Only after the summary, ask the user whether they want culprit analysis across the compare range.

Use language like:

I generated /tmp/build-health/build-health-report.md. The current red incident starts at build X, the dominant failure pattern is Y, and the compare range is Z. Do you want me to continue with heuristic culprit analysis across that compare range?

If the user says yes to culprit analysis

Treat culprit analysis as reasoned triage, not as fact.

  1. Start from the compare range in the report.
  2. Cross-check the first error and dominant failure pattern.
  3. Distinguish likely code regressions from likely infra failures.
  4. If the evidence points to code, rank the most likely suspect commits and explain why each one matches the failure pattern.
  5. If the evidence points to infra, say that clearly and avoid inventing a culprit commit.

Keep the output explicit that this is heuristic reasoning.

Workflow 2: Analyze The Last 100 Builds

  1. Fetch the last 100 builds and generate the markdown report file.
  2. Use the report to summarize:
    • Current build status
    • Total incidents and ongoing incidents
    • Top recurring failure reasons
    • Long or noisy incidents
    • Whether failures look like infra churn or specific product regressions
  3. Point the user to the report path and call out the most useful sections.

In this mode, do not jump into culprit analysis unless the user asks for it.

4. Common Failure Patterns

PatternTypical ErrorAction
Electron Tests failing on one platformTest assertion or timeoutCheck if the failing test was touched in recent commits
Electron Tests failing on ALL platformsCould not fetch releases from update serverUpdate server issue — usually self-resolves
Linux Alpine (ARM64)Install dependencies timeoutAgent pool saturation — wait or escalate to infra
Remote Tests timing outThe task has timed out after Data Loss testsRemote test infra issue
Copilot sanity testsAssertionError: ok(provider)Copilot extension registration issue — check recent copilot extension changes
Publish BuildRetry failuresArtifact upload infra issue

Notes

  • The fetch script is incremental: re-running it skips already-downloaded timelines and logs
  • Timelines are only downloaded for failed/partial builds (not green ones) to save time
  • Log files contain the last 100 lines of the failing task — usually sufficient to see the error
  • The analysis script groups failures by job name, so you can quickly see if one job is responsible for many incidents
  • If the report window starts in the middle of an incident, expand the fetch range before doing commit-range analysis
  • The markdown report is the stable handoff artifact; the chat summary should stay short and decision-oriented

microsoft의 다른 스킬

oss-growth
microsoft
OSS 성장 해커 페르소나
agent-framework-azure-ai-py
microsoft
Microsoft Agent Framework Python SDK(agent-framework-azure-ai)를 사용하여 Azure AI Foundry 에이전트를 구축합니다. AzureAIAgentsProvider로 지속적 에이전트를 만들 때, 호스팅 도구(코드 인터프리터, 파일 검색, 웹 검색)를 사용할 때, MCP 서버를 통합할 때, 대화 스레드를 관리할 때, 또는 스트리밍 응답을 구현할 때 사용합니다. 함수 도구, 구조화된 출력, 다중 도구 에이전트를 다룹니다.
development
airunway-aks-setup
microsoft
AKS에서 AI Runway 설정 — 빈 클러스터에서 실행 중인 모델까지. 클러스터 검증, 컨트롤러 설치, GPU 평가, 공급자 설정, 첫 배포를 다룹니다. 시기: "AI Runway 설정", "AKS 클러스터 온보딩", "AI Runway 설치", "airunway 설정", "AKS에 모델 배포", "AKS에서 GPU 추론", "AKS에서 KAITO 설정", "AKS에서 LLM 실행", "AKS에서 vLLM", "AKS에서 모델 서빙 설정", "AI Runway 컨트롤러".
devops
appinsights-instrumentation
microsoft
Azure Application Insights로 웹앱을 계측하기 위한 지침입니다. 원격 분석 패턴, SDK 설정, 구성 참조를 제공합니다. WHEN: 앱 계측 방법, App Insights SDK, 원격 분석 패턴, App Insights란 무엇인가, Application Insights 지침, 계측 예시, APM 모범 사례.
devops
applicationinsights-web-ts
microsoft
브라우저/웹 앱을 Application Insights JavaScript SDK(@microsoft/applicationinsights-web)로 계측합니다. Real User Monitoring(RUM) — 페이지 뷰, 클릭, AJAX/fetch 종속성, 예외, 사용자 지정 이벤트, 백엔드 OpenTelemetry 트레이스와 상관관계가 있는 브라우저 측 GenAI 에이전트 트레이스에 사용합니다. SDK Loader Script 및 npm 설정, 프레임워크 확장(React, React Native, Angular), Click Analytics, 텔레메트리 이니셜라이저, 브라우저에서 생성된 에이전트/도구/모델 스팬에 대한 OTel GenAI 의미론적 규칙을 다룹니다.
devops
azure-ai-anomalydetector-java
microsoft
Azure AI Anomaly Detector SDK for Java로 이상 탐지 애플리케이션을 구축하세요. 단변량/다변량 이상 탐지, 시계열 분석 또는 AI 기반 모니터링을 구현할 때 사용하세요.
development
azure-ai-language-conversations-py
microsoft
azure-ai-language-conversations Python SDK를 사용하여 대화형 언어 이해(CLU)를 구현합니다. ConversationAnalysisClient로 대화 의도와 엔터티를 분석하거나, NLP 기능을 구축하거나, 애플리케이션에 언어 이해를 통합할 때 사용합니다.
development
azure-ai-ml-py
microsoft
Azure Machine Learning SDK v2 for Python. ML 작업 영역, 작업, 모델, 데이터 세트, 컴퓨팅 및 파이프라인에 사용합니다. 트리거: "azure-ai-ml", "MLClient", "workspace", "model registry", "training jobs", "datasets".
development