set-prioity
Update task priority in Kanban-style workflows. Specify task ID and new priority (low, medium, high) to streamline task management and enhance productivity.
Instructions
set a task to a different priority
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_priority | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"new_priority": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"task_id": {
"type": "string"
}
},
"required": [
"task_id",
"new_priority"
],
"type": "object"
}