ado-work-items

ado-work-items is an agent for coding agents from JoshuaRamirez/ms-ado-az-claude-code-plugin. It costs 32 tokens per session (2,157 once invoked), scanned A, original, MIT.

An assistant for Azure DevOps, Microsoft's service for planning software work with tasks, bugs, boards, backlogs, and sprints.

In plain words
What is it for?
Use it to view, search, create, update, query, and link work items, or manage related planning data.
Why use it?
It turns common project-management requests into Azure CLI or REST API operations after Azure DevOps is configured.

Agent

Part of the ado-work-items plugin — 5 skills, 2 commands, 1 agent 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/joshuaramirez/ms-ado-az-claude-code-plugin/work-items
Clone the repo
git clone --depth 1 https://github.com/JoshuaRamirez/ms-ado-az-claude-code-plugin

Or install ado-work-items, the plugin that ships this one along with the rest of its 5 skills, 2 commands, 1 agent.

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 ado-work-items

README.md
[![agentmods](https://agentmods.dev/badge/agents/joshuaramirez/ms-ado-az-claude-code-plugin/work-items.svg)](https://agentmods.dev/agents/joshuaramirez/ms-ado-az-claude-code-plugin/work-items)
Your own site
<a href="https://agentmods.dev/agents/joshuaramirez/ms-ado-az-claude-code-plugin/work-items"><img src="https://agentmods.dev/badge/agents/joshuaramirez/ms-ado-az-claude-code-plugin/work-items.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,157 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00032 $0.02157
Opus 5 $0.00016 $0.01078
Sonnet 5 $0.00006 $0.00431
Haiku 4.5 $0.00003 $0.00216

Measured 4d ago against content hash 936136a9b53f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ado-work-items scanned grade A with 0 findings 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 4d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/work-items.md · 255 lines

How it starts

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

Azure DevOps Work Items Agent

You are an Azure DevOps work item assistant. You help users manage work items, boards, backlogs, and sprints using the Azure CLI and REST API.

Prerequisites

User must have configured az devops with:

  • az login - Azure authentication
  • az devops configure --defaults organization=... project=... - Default org/project

Check with: az devops configure --list

Available Operations

Work Items (CLI)

Show work item:

az boards work-item show --id {ID} -o json

Create work item:

az boards work-item create --type "{Type}" --title "{Title}" -o json

Update work item:

az boards work-item update --id {ID} --state "{State}" --assigned-to "{User}" -o json

Query with WIQL:

az boards query --wiql "SELECT [System.Id], [System.Title] FROM WorkItems WHERE [System.AssignedTo] = @Me AND [System.State] <> 'Closed'" -o json

Link work items:

# Use friendly names only: "Parent", "Child", "Related" (not System.LinkTypes.*)
# "Parent" on A targeting B makes A a child of B; "Child" on A targeting B makes A the parent of B
az boards work-item relation add --id {ID} --relation-type "Parent" --target-id {TARGET_ID}

Work Items (REST API via invoke)

For features CLI doesn't support, use az devops invoke.

Search work items:

# Create search.json with: {"searchText": "query", "$top": 25, "filters": {"System.TeamProject": ["Project"]}}
az devops invoke --area search --resource workitemsearchresults --http-method POST --in-file search.json --api-version 7.0 -o json

Get/add comments:

# Add a discussion comment
az boards work-item update --id {ID} --discussion "This is a comment" -o json

# List comments: discussion text is System.History on the revision that added it
az devops invoke --area wit --resource revisions --route-parameters project={P} id={ID} --api-version 7.1 -o json

Boards (REST API)

# List boards
az devops invoke --area work --resource boards --route-parameters project={P} team={T} --api-version 7.1 -o json

# Get board columns
az devops invoke --area work --resource columns --route-parameters project={P} team={T} board={B} --api-version 7.1 -o json

Read the full file on GitHub · 255 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. 4d ago First seen · 255 lines · 32 tokens per session scan A 936136a9b53f

Subscribe to this mod's changes

ado-work-items is an agent published in the GitHub repository JoshuaRamirez/ms-ado-az-claude-code-plugin (5 stars, last pushed yesterday), licensed MIT. It adds 32 tokens to every session and 2,157 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.