create-work-item
Generate and assign work items in Azure DevOps, specifying type, title, description, assignee, tags, parent ID, iteration path, and state for streamlined project tracking.
Instructions
Create a new work item in Azure DevOps
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignedTo | No | Email of the person to assign the work item to | |
description | No | Work item description | |
iterationPath | No | Iteration path for sprint assignment (e.g., ProjectName\Sprint 1) | |
parent | No | Parent work item ID for establishing hierarchy during creation | |
state | No | Initial work item state (e.g., New, Active) | |
tags | No | Semicolon-separated tags | |
title | Yes | Work item title | |
type | Yes | Work item type (e.g., Task, Bug, User Story) |
Input Schema (JSON Schema)
{
"properties": {
"assignedTo": {
"description": "Email of the person to assign the work item to",
"type": "string"
},
"description": {
"description": "Work item description",
"type": "string"
},
"iterationPath": {
"description": "Iteration path for sprint assignment (e.g., ProjectName\\Sprint 1)",
"type": "string"
},
"parent": {
"description": "Parent work item ID for establishing hierarchy during creation",
"type": "number"
},
"state": {
"description": "Initial work item state (e.g., New, Active)",
"type": "string"
},
"tags": {
"description": "Semicolon-separated tags",
"type": "string"
},
"title": {
"description": "Work item title",
"type": "string"
},
"type": {
"description": "Work item type (e.g., Task, Bug, User Story)",
"type": "string"
}
},
"required": [
"type",
"title"
],
"type": "object"
}