Update Bug
Update an existing bug task.
Instructions
Call update-bug.
Append to existing description; do not prepend.
Fix delivered example:
update-bug({
"taskId": "<taskId>",
"workspaceId": "<workspaceId>",
"status": "In Progress",
"assigneeIds": ["<userId>"],
"teamIds": ["<teamId>"],
"description": "<existingDescription>\\n\\n---\\n\\n## Changes\\n- What changed: Fixed stale cache key invalidation in checkout totals\\n- Why: Totals were computed with outdated cache entries"
})Triage/research-only example:
update-bug({
"taskId": "<taskId>",
"workspaceId": "<workspaceId>",
"status": "In Review",
"description": "<existingDescription>\\n\\n---\\n\\n## Update\\n- Summary: Investigated repro path and identified likely cache invalidation issue"
})Use get-task-details if you need full prior context before modifying.
If setting bug status to Completed, append a ## Changes block. Do not send status-only completion updates.
When writing back a fix, ensure the bug update includes:
- root cause
- concrete code changes
- why the change was needed
Use Changes/Why for actual fixes only. Use Update summary for non-fix progress.