What problem does it solve? Validating Azure DevOps pipeline YAML changes normally requires pushing commits and waiting through slow CI feedback loops. This Skill lets you queue builds, check status, download logs and artifacts, and cancel obsolete runs directly from the command line using the Azure CLI. ## Core Features & Use Cases - Queue Builds with Custom Parameters: Trigger builds on any branch with configurable parameters like VSCODE_BUILD_TYPE, VSCODE_PUBLISH, and platform-specific build flags to run minimal validation builds. - Monitor Build Status: List recent builds, inspect a specific build's stages and jobs, watch progress with automatic polling, and output raw JSON for scripting. - Investigate and Clean Up: Download specific build logs or artifacts to /tmp for debugging, and cancel outdated builds to free up build agents before queueing new ones. - Use Case: You modified files under build/azure-pipelines/ and want to verify the change. Commit and push, cancel any stale build on the branch, queue a new build with CI-oriented parameters, and watch it until completion. ## Quick Start Queue a validation build on my current branch and watch its status until it completes.