create_work_item
Create new work items like Epics, User Stories, Tasks, and Bugs in Azure DevOps projects. Define title, description, and link related items to track development work.
Instructions
Creates a new work item in Azure DevOps. Supports Epic, User Story, Task, Bug, and work item linking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The description of the work item. | |
project | Yes | The name or ID of the project. | |
relations | No | A list of relations to other work items. | |
title | Yes | The title of the work item. | |
work_item_type | Yes | The type of work item (e.g., 'Bug', 'User Story', 'Task', 'Epic'). |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The description of the work item.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"relations": {
"description": "A list of relations to other work items.",
"items": {
"properties": {
"rel": {
"description": "The relation type (e.g., 'System.LinkTypes.Dependency-Forward').",
"type": "string"
},
"url": {
"description": "The URL of the related work item.",
"type": "string"
}
},
"required": [
"rel",
"url"
],
"type": "object"
},
"type": "array"
},
"title": {
"description": "The title of the work item.",
"type": "string"
},
"work_item_type": {
"description": "The type of work item (e.g., 'Bug', 'User Story', 'Task', 'Epic').",
"type": "string"
}
},
"required": [
"project",
"work_item_type",
"title",
"description"
],
"type": "object"
}