mcpbeat Sign in

Boards My Work Agent Skill

This skill retrieves and displays work items assigned to the user in Azure DevOps, organized by type and sorted by recently changed. It prompts for a project name or lists available projects if not provided, then fetches work item details and displays them in a formatted table with clickable links.

847 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
36
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/microsoft/azure-devops-skills --skill boards-my-work

The instruction itself

5 sections, as written by the author

Get my work items

Before getting work items, you need to know which project to use.

  • If the user provides a project name in their request (for example, "for Contoso"), use that project directly and do not call the core_list_projects tool.
  • If a project name is not provided, first return a prompt asking the user for the project name.
  • If the project name is still not provided after prompting the user, then call the MCP Server tool core_list_projects to get the list of projects the user can choose from.
  • Do not continue if the user has not provided a project name or selected one from the list.

Tools

Use Azure DevOps MCP Server tools for all interactions with Azure DevOps.

  • core_list_projects: Get the list of projects the user can choose from.
  • wit_work_item (action: my): Get work items from Azure DevOps that are assigned to the user
  • wit_work_item (action: get_batch): Get work item details in batch by their IDs. Use this tool to get detailed information about the work items retrieved by wit_work_item with action my.

Fields

When using the tool wit_work_item with action get_batch, if the user does not provide a list of fields to retrieve, use the following default fields:

  • System.Id
  • System.Title
  • System.State
  • System.AssignedTo
  • System.WorkItemType
  • System.CreatedDate
  • System.ChangedDate
  • System.Tags
  • Microsoft.VSTS.Common.Priority

Display results

When displaying the results...

  • show the work item ID (make this clickable hyperlink to open the work item in a web browser. Format should be like this: {ID}),
  • title
  • state,
  • priority

in a table format. Show the most recently changed work items first and group the work items by thier work item type (System.WorkItemType). For example, group the work items into the following categories based on their work item type:

Epics

Features

Stories

Bugs

Tasks

Test Cases

other work item types

Steps

  • Check if the user has provided a project name in their request. If not, prompt the user to provide a project name.
  • If the user still does not provide a project name, call the core_list_projects tool to get the list of projects and prompt the user to select one.
  • Once a project name is obtained, call the wit_work_item tool with action my to retrieve the work items assigned to the user for that project. Use assigned to me as the filter criteria to get the relevant work items.
  • Extract the IDs of the retrieved work items and call the wit_work_item tool with action get_batch to get detailed information about those work items, including the default fields if the user did not specify any.
  • Organize the retrieved work items by their work item type (System.WorkItemType) and sort them by the most recently changed date (System.ChangedDate).
  • Display the work items in a table format, showing the ID (as a clickable hyperlink), title, state, and priority for each work item, grouped by their work item type.

Other skills for the same job

different authors, same section of the catalogue
MCP Deploy Manage Agents
by github
vendor ×1

Skill converted from mcp-deploy-manage-agents.prompt.md

2k tokens
Cloud Claw Launch Agent
by internet-court
×1

Use this skill when the user wants to launch a new AltClaw, OpenClaw, PicoClaw, or Ottie deployment through Cloud Claw. Covers the same user-facing fields and constraints exposed in the Cloud Claw UI, using the local altllm cloud-claw-* commands. Do NOT use for post-launch lifecycle tasks like start/stop/delete/logs; use cloud-claw-manage-vm.

1k tokens
Hosted Agents V2 Py
by lingxling
×1

Build hosted agents using Azure AI Projects SDK with ImageBasedHostedAgentDefinition. Use when creating container-based agents in Azure AI Foundry.

2k tokens
Cloudflare MCP Server
by ComeOnOliver
×1

Build MCP (Model Context Protocol) servers on Cloudflare Workers with tools, resources, and prompts.

49k tokens scripts
When Chaining Agent Pipelines Use Stream Chain
by ComeOnOliver
×1

Chain agent outputs as inputs in sequential or parallel pipelines for data flow orchestration

5k tokens
Clone Audit Mrlv3nl4
by nexu-io

Audit cloned or reimplemented websites for fidelity gaps, tracking scripts, source-brand and language residue, placeholders, and risky external dependencies. Use before handoff or deployment, or when asked to review a website clone for cleanup and readiness.

2k tokens
Hermes Tweet
by wshobson

> Install and operate Hermes Tweet, a Hermes Agent plugin for X/Twitter research, timeline reading, tweet analysis, and approval-gated tweet actions. Use this skill when installing Hermes Tweet, researching X/Twitter accounts, monitoring launch signals, investigating mentions, auditing giveaways, or preparing guarded tweet actions. Use proactively when a Hermes Agent workflow needs current X/Twitter context. Requires XQUIK_API_KEY for read and action tools.

2k tokens
Arize Evaluator
by github
vendor

Handles LLM-as-judge evaluation workflows on Arize including creating/updating evaluators, running evaluations on spans or experiments, managing tasks, trigger-run operations, column mapping, and continuous monitoring. Use when the user mentions create evaluator, LLM judge, hallucination, faithfulness, correctness, relevance, run eval, score spans, score experiment, trigger-run, column mapping, continuous monitoring, or improve evaluator prompt.

10k tokens

How to use it

Copy the folder

Take microsoft/boards-my-work from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.