원클릭으로
update-work-items
Modify work item fields, add comments, and create new items. Use when user wants to update, comment on, or create work items.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Modify work item fields, add comments, and create new items. Use when user wants to update, comment on, or create work items.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Common patterns and workflows for Azure DevOps and database queries. Use to avoid inefficient searches and tangents.
Enables Copilot to SSH into the Fizz EC2 instance and manage Docker containers for the fyzz.dev production app.
Retrieve complete details for specific Azure DevOps work items by ID, including all fields, comments, change history, and related items. Use when the user asks about a specific ticket number or needs full context on a work item. PAT token in .env file at network/.env.
Search for Azure DevOps work items using text search and filters. Use when the user asks to find tickets, work items, issues, bugs, or user stories by keyword, state, assignment, tags, or area. PAT token in .env file at network/.env.
Navigate and understand the EvaAPI codebase structure. Use when searching for models, services, controllers, migrations, or any code related to Eva database entities. Helps locate where specific features are implemented.
Query and analyze the Eva QA database using PowerShell functions. Use when working with Eva sessions, committee reports, meeting notices, or any Eva application data in the QA environment.
| name | update-work-items |
| description | Modify work item fields, add comments, and create new items. Use when user wants to update, comment on, or create work items. |
Modify work item fields, add comments, and create new items in Azure DevOps.
Initialize-AzureDevOpsUpdate-WorkItem -Id 12345 -State "Closed"
Update-WorkItem -Id 12345 -AssignedTo "john.doe@company.com"
Update-WorkItem -Id 12345 -State "Active" -Priority 1 -Tags "urgent,bug-fix"
Add-WorkItemComment -Id 12345 -Comment "Fixed in PR #789"
New-WorkItem -Type "Bug" -Title "Login fails on Safari" -Priority 1
New-WorkItem -Type "User Story" `
-Title "Add export to PDF" `
-Description "Users need to export reports as PDF" `
-Priority 2 `
-AreaPath "MyProject\Features"
Updates fields on an existing work item.
Parameters:
Adds a comment to a work item.
Parameters:
Creates a new work item.
Parameters:
All functions return the updated/created work item object with all current fields.