bmad_update_task_status
Update the status of a task in CastPlan MCP by specifying a task ID and choosing from predefined status options such as pending, assigned, in-progress, needs-revision, or completed.
Instructions
Update the status of a specific task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | Yes | New status for the task | |
taskId | Yes | ID of the task to update |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"description": "New status for the task",
"enum": [
"pending",
"assigned",
"in-progress",
"needs-revision",
"completed"
],
"type": "string"
},
"taskId": {
"description": "ID of the task to update",
"type": "string"
}
},
"required": [
"taskId",
"status"
],
"type": "object"
}