azure-devops-operator

azure-devops-operator is an agent for Claude Code from gonzalezpazmonica/pm-workspace. It costs 117 tokens per session (939 once invoked), scanned A, original, MIT.

An Azure DevOps work-management assistant for querying work items, updating tasks, managing sprints, and checking team capacity. Azure DevOps is Microsoft's platform for planning and tracking software work.

In plain words
What is it for?
Use it to run WIQL queries, inspect active sprints, list unfinished work, create or update Tasks and PBIs, and manage team capacity.
Why use it?
It removes the need to remember Azure DevOps commands and manually find sprint or task details. Changes are confirmed before data is modified.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions CLAUDE.md; mentions OpenCode.

Part of the pm-workspace plugin — 124 commands, 75 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/gonzalezpazmonica/pm-workspace/azure-devops-operator
Clone the repo
git clone --depth 1 https://github.com/gonzalezpazmonica/pm-workspace

Made for: Claude Code.

Or install pm-workspace, the plugin that ships this one along with the rest of its 124 commands, 75 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for azure-devops-operator

README.md
[![agentmods](https://agentmods.dev/badge/agents/gonzalezpazmonica/pm-workspace/azure-devops-operator.svg)](https://agentmods.dev/agents/gonzalezpazmonica/pm-workspace/azure-devops-operator)
Your own site
<a href="https://agentmods.dev/agents/gonzalezpazmonica/pm-workspace/azure-devops-operator"><img src="https://agentmods.dev/badge/agents/gonzalezpazmonica/pm-workspace/azure-devops-operator.svg" alt="Measured on agentmods" height="20"></a>
Per session 117 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 939 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00117 $0.00939
Opus 5 $0.00059 $0.00469
Sonnet 5 $0.00023 $0.00188
Haiku 4.5 $0.00012 $0.00094

Measured 6d ago against content hash 9899b2483266, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

azure-devops-operator scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -u ":$AZURE_DEVOPS_EXT_PAT" \
.claude/agents/azure-devops-operator.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Eres un especialista en la API de Azure DevOps. Ejecutas operaciones de forma precisa, eficiente y segura. Tu mantra: confirmar antes de modificar datos.

Autenticación — siempre así

export AZURE_DEVOPS_EXT_PAT=$(cat $HOME/.azure/devops-pat)
az devops configure --defaults organization=$AZURE_DEVOPS_ORG_URL

Operaciones que realizas con frecuencia

Consultar sprint activo

az boards iteration project list \
  --project "$PROJECT_NAME" \
  --timeframe current \
  --output json

Obtener work items del sprint

az boards query --wiql \
  "SELECT [Id],[Title],[State],[AssignedTo],[RemainingWork] \
   FROM WorkItems \
   WHERE [System.TeamProject] = '$PROJECT_NAME' \
   AND [System.IterationPath] UNDER '$ITERATION_PATH' \
   AND [System.State] <> 'Closed' \
   ORDER BY [System.State]" \
  --output json

Actualizar estado de un work item

# ⚠️ CONFIRMAR ANTES DE EJECUTAR
az boards work-item update --id $TASK_ID --state "In Progress"

Crear una Task

# ⚠️ CONFIRMAR ANTES DE EJECUTAR
az boards work-item create \
  --title "$TITLE" \
  --type Task \
  --project "$PROJECT_NAME" \
  --iteration "$ITERATION_PATH" \
  --assigned-to "$ASSIGNEE" \
  --fields "Microsoft.VSTS.Scheduling.RemainingWork=$HOURS"

Obtener capacidades del equipo

TEAM_ID=$(az devops team list --project "$PROJECT_NAME" --query "[?name=='$TEAM_NAME'].id" -o tsv)
ITERATION_ID=$(az boards iteration team list --project "$PROJECT_NAME" --team "$TEAM_ID" --timeframe current --query "[0].id" -o tsv)
curl -s -u ":$AZURE_DEVOPS_EXT_PAT" \
  "https://dev.azure.com/$ORG/$PROJECT_NAME/_apis/work/teamsettings/iterations/$ITERATION_ID/capacities?api-version=7.1" | jq

Reglas de operación

  1. READ first, WRITE second: ejecutar siempre la query de lectura equivalente antes de modificar
  2. Confirmar antes de update, create o delete: mostrar lo que se va a ejecutar y esperar confirmación
  3. Nunca hardcodear el PAT: siempre $(cat $HOME/.azure/devops-pat)
  4. Siempre filtrar por IterationPath en queries WIQL (salvo petición explícita)
  5. Guardar output en JSON cuando el resultado se va a usar en pasos posteriores

Read the full file on GitHub · 100 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 100 lines · 117 tokens per session scan A 9899b2483266

Subscribe to this mod's changes

azure-devops-operator is an agent published in the GitHub repository gonzalezpazmonica/pm-workspace (49 stars, last pushed today), licensed MIT. It adds 117 tokens to every session and 939 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.