build-health

Analyser l'état de santé des builds rolling de VS Code sur Azure DevOps. Utiliser lorsque : le build rolling est actuellement rouge, vous avez besoin d'un rapport pour les 100 derniers builds, vous avez besoin de…

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

Plus de skills de microsoft

oss-growth
microsoft
Persona de growth hacker OSS
agent-framework-azure-ai-py
microsoft
Créez des agents Azure AI Foundry à l’aide du SDK Python Microsoft Agent Framework (agent-framework-azure-ai). À utiliser lors de la création d’agents persistants avec AzureAIAgentsProvider, de l’utilisation d’outils hébergés (interpréteur de code, recherche de fichiers, recherche web), de l’intégration de serveurs MCP, de la gestion de fils de conversation ou de l’implémentation de réponses en streaming. Couvre les outils de fonction, les sorties structurées et les agents multi-outils.
development
airunway-aks-setup
microsoft
Configurez AI Runway sur AKS — du cluster nu au modèle en cours d'exécution. Couvre la vérification du cluster, l'installation du contrôleur, l'évaluation GPU, la configuration du fournisseur et le premier déploiement. QUAND : « configurer AI Runway », « intégrer un cluster AKS », « installer AI Runway », « configuration airunway », « déployer un modèle sur AKS », « inférence GPU sur AKS », « configuration KAITO sur AKS », « exécuter LLM sur AKS », « vLLM sur AKS », « configurer le service de modèles sur AKS », « contrôleur AI Runway ».
devops
appinsights-instrumentation
microsoft
Conseils pour instrumenter les applications web avec Azure Application Insights. Fournit des modèles de télémétrie, la configuration du SDK et des références de configuration. QUAND : comment instrumenter une application, SDK App Insights, modèles de télémétrie, qu'est-ce qu'App Insights, conseils sur Application Insights, exemples d'instrumentation, bonnes pratiques APM.
devops
applicationinsights-web-ts
microsoft
Instrumentez les applications navigateur/web avec le SDK JavaScript Application Insights (@microsoft/applicationinsights-web). Utilisez-le pour la surveillance des utilisateurs réels (RUM) — vues de page, clics, dépendances AJAX/fetch, exceptions, événements personnalisés et traces d’agents GenAI côté navigateur corrélées aux traces OpenTelemetry backend. Couvre le script de chargement du SDK et la configuration npm, les extensions de framework (React, React Native, Angular), Click Analytics, les initialiseurs de télémétrie et les conventions sémantiques OTel GenAI pour les spans d’agents/outils/modèles émises depuis le navigateur.
devops
azure-ai-anomalydetector-java
microsoft
Créez des applications de détection d'anomalies avec le SDK Azure AI Anomaly Detector pour Java. Utilisez-le lors de l'implémentation de la détection d'anomalies univariées/multivariées, de l'analyse de séries temporelles ou de la surveillance basée sur l'IA.
development
azure-ai-language-conversations-py
microsoft
Implémentez la compréhension du langage conversationnel (CLU) à l’aide du SDK Python azure-ai-language-conversations. Utilisez-le lorsque vous travaillez avec ConversationAnalysisClient pour analyser l’intention et les entités d’une conversation, créer des fonctionnalités de NLP ou intégrer la compréhension du langage dans des applications.
development
azure-ai-ml-py
microsoft
SDK v2 d’Azure Machine Learning pour Python. Utiliser pour les espaces de travail ML, les tâches, les modèles, les jeux de données, le calcul et les pipelines. Déclencheurs : « azure-ai-ml », « MLClient », « espace de travail », « registre de modèles », « tâches d’entraînement », « jeux de données ».
development