create_work_item
Add a new work item to an Azure DevOps project with configurable type, title, description, assignment, tags, priority, and parent link.
Instructions
Create a new work item.
Args: project: Azure DevOps project name. Uses default if not specified. work_item_type: Type of work item (e.g., "Bug", "User Story", "Task", "Epic", "Feature"). title: Title of the work item. description: HTML description of the work item. assigned_to: Display name or email of the person to assign to. area_path: Area path (e.g., "MyProject\Team A"). iteration_path: Iteration path (e.g., "MyProject\Sprint 1"). priority: Priority (1=Critical, 2=High, 3=Medium, 4=Low). tags: Semicolon-separated tags (e.g., "frontend; urgent"). additional_fields: Dict of additional field paths and values. parent_id: Optional ID of a parent work item to link to.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | No | ||
| work_item_type | No | ||
| title | No | ||
| description | No | ||
| assigned_to | No | ||
| area_path | No | ||
| iteration_path | No | ||
| priority | No | ||
| tags | No | ||
| additional_fields | No | ||
| parent_id | No |