reorder_checklist_item
Move a checklist item to a new position by specifying its current and desired index, enabling organized task management within structured workflows.
Instructions
Moves a checklist item to a new position.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_index | Yes | The current index of the checklist item (0-based) | |
to_index | Yes | The new index for the checklist item (0-based) |
Input Schema (JSON Schema)
{
"properties": {
"from_index": {
"description": "The current index of the checklist item (0-based)",
"type": "number"
},
"to_index": {
"description": "The new index for the checklist item (0-based)",
"type": "number"
}
},
"required": [
"from_index",
"to_index"
],
"type": "object"
}