@mtaap/mcp 0.4.1 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -57,7 +57,7 @@ DRAFT -> TODO -> IN_PROGRESS -> REVIEW -> DONE
57
57
 
58
58
  State transitions:
59
59
  - `verify_task`: DRAFT -> TODO (or NEEDS_REVISION if rejected)
60
- - `update_task` on TODO: reverts to DRAFT (requires re-verification)
60
+ - `update_task`: edits DRAFT/TODO tasks (state unchanged)
61
61
  - `assign_task`: TODO -> IN_PROGRESS
62
62
  - `report_pr`: marks task ready for review (REVIEW state)
63
63
  - `request_changes`: REVIEW -> IN_PROGRESS
@@ -170,7 +170,7 @@ Create task with title, description, acceptance criteria. Starts in DRAFT state.
170
170
 
171
171
  #### update_task
172
172
 
173
- Update task details (title, description, priority, acceptanceCriteria). Only works for DRAFT and TODO states. If task is in TODO state, it reverts to DRAFT and requires re-verification.
173
+ Update task details (title, description, priority, acceptanceCriteria). Only works for DRAFT and TODO states. Task stays in its current state.
174
174
 
175
175
  **Parameters:**
176
176
  | Name | Type | Required | Description |
@@ -182,7 +182,7 @@ Update task details (title, description, priority, acceptanceCriteria). Only wor
182
182
  | `priority` | TaskPriority | No | New task priority |
183
183
  | `acceptanceCriteria` | array | No | New acceptance criteria (replaces existing). Array of `{ id?: string, description: string }` |
184
184
 
185
- **Returns:** `{ success, taskId, state, revertedToDraft }` - If task was TODO, revertedToDraft will be true.
185
+ **Returns:** Updated task object with all fields including acceptance criteria.
186
186
 
187
187
  ---
188
188