create_work_item
Generate and manage work items in Azure DevOps by specifying project, type, title, description, and assignee to streamline task tracking and project management.
Instructions
Create a new work item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignedTo | No | User to assign the work item to | |
description | No | Description of the work item | |
project | Yes | Name of the Azure DevOps project | |
title | Yes | Title of the work item | |
type | Yes | Type of work item (e.g., 'Task', 'Bug') |
Input Schema (JSON Schema)
{
"properties": {
"assignedTo": {
"description": "User to assign the work item to",
"type": "string"
},
"description": {
"description": "Description of the work item",
"type": "string"
},
"project": {
"description": "Name of the Azure DevOps project",
"type": "string"
},
"title": {
"description": "Title of the work item",
"type": "string"
},
"type": {
"description": "Type of work item (e.g., 'Task', 'Bug')",
"type": "string"
}
},
"required": [
"project",
"type",
"title"
],
"type": "object"
}