一键导入
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.