azure-devops-work-item-update

Link Git commits to Azure DevOps work items and add implementation summaries.

Updated Jan 19, 2026
One-click install
npx skills add https://github.com/onshoreoutsourcing/lighthouse-beacon --skill azure-devops-work-item-update
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: azure-devops-work-item-update
Source: https://github.com/onshoreoutsourcing/lighthouse-beacon/tree/main/.claude/skills/azure-devops-work-item-update
Command: npx skills add https://github.com/onshoreoutsourcing/lighthouse-beacon --skill azure-devops-work-item-update

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This skill automates the process of updating Azure DevOps work items to reflect implemented changes by linking Git commits, adding comprehensive implementation summaries, and updating statuses to drive QA readiness and traceability.

Core Features & Use Cases

  • Link Git commits to work items as external hyperlinks to establish a traceable connection between code and work items.
  • Add HTML-formatted implementation summaries and optional files changed to the work item's history for context.
  • Update work item state (e.g., Ready for Testing, Resolved) and support batch updates across multiple work items from a feature branch.
  • Handle common scenarios such as single-task updates, parent story updates, and bug fixes with consolidated documentation.

Quick Start

After making a commit that references a work item (for example feat(#1234): Implement feature X), run:

  • Generate a payload: python scripts/generate_update_payload.py --work-item-id 1234 --commit-sha abc123 --commit-url "https://github.com/org/repo/commit/abc123" --summary "Implemented feature X" --target-state "Ready for Testing"
  • Apply the payload to Azure DevOps using MCP (the exact MCP call will be produced by the generator).

Frequently Asked Questions about azure-devops-work-item-update

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I link Git commits to Azure DevOps work items automatically?

Link Git commits to Azure DevOps work items by running a Python script that generates an update payload with the commit SHA and work item ID, then apply that payload using MCP to add external hyperlinks and implementation summaries for traceability.

Can I batch update multiple Azure DevOps work items from a single feature branch?

You can batch update multiple Azure DevOps work items from a feature branch by generating payloads based on commit messages, which allows linking commits, adding summaries, and updating states across several items at once.

What is needed to automate Azure DevOps work item state updates?

Automating Azure DevOps work item state updates requires an Azure DevOps project, repository access, and the MCP tool to enact batch updates from generated payloads created by the Python script.

How do I add an implementation summary to a work item history in Azure DevOps?

Add HTML-formatted implementation summaries to Azure DevOps work item history by running the payload generator script with commit details and summary text, then applying the output via MCP to update the item's history.

Does updating Azure DevOps work items with this method support changing states to Ready for Testing?

Updating Azure DevOps work items supports changing states to Ready for Testing or Resolved by passing the target state parameter to the generator script, which then updates the work item status during the MCP application.