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.
npx agentmods add agents/gonzalezpazmonica/pm-workspace/azure-devops-operatorgit clone --depth 1 https://github.com/gonzalezpazmonica/pm-workspaceWrote 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.
[](https://agentmods.dev/agents/gonzalezpazmonica/pm-workspace/azure-devops-operator)<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>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.
| Model | Per session | Once 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 |
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" \ 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
- READ first, WRITE second: ejecutar siempre la query de lectura equivalente antes de modificar
- Confirmar antes de
update,createodelete: mostrar lo que se va a ejecutar y esperar confirmación - Nunca hardcodear el PAT: siempre
$(cat $HOME/.azure/devops-pat) - Siempre filtrar por IterationPath en queries WIQL (salvo petición explícita)
- Guardar output en JSON cuando el resultado se va a usar en pasos posteriores
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.
- 6d ago First seen · 100 lines · 117 tokens per session scan A 9899b2483266
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.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
agentic-workflows
GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing.