What problem does it solve? Creating or updating Azure DevOps work items from the command line often breaks on multi-line bodies, Swedish characters (å/ä/ö) getting mangled, and bodies written to the wrong field for the work-item type. This Skill runs a deterministic PowerShell script that talks to the Azure DevOps REST API directly, avoiding the known failures of the az boards CLI. ## Core Features & Use Cases - Create and update work items: Supports Bug, Product Backlog Item, Task, and User Story, routing the body to the correct field per type (e.g. ReproSteps for Bugs) via a configurable mapping. - UTF-8 safe and verifiable: Sends bodies as raw UTF-8 bytes without BOM, then re-fetches the item after writing to verify the content landed and warn on truncation. - Dry-run preview: Inspect the exact URL and JSON-Patch body (PAT redacted) before sending anything. - Use Case: From a repo, ask to file a bug with a multi-line Swedish description; the script finds .azuredevops.json, writes the body to ReproSteps, assigns the default user, and prints the work-item URL. ## Quick Start Ask the assistant to create an Azure DevOps bug titled "Login fails" with your repro steps as the body, running the script with -DryRun first to preview the request.