update_current_task
Modify the content of your actively focused task in the hierarchical task management system, ensuring updated notes and context are preserved for efficient problem-solving.
Instructions
Update notes/content of the task you're currently focused on (current task only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | New body content for the task |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "New body content for the task",
"type": "string"
}
},
"required": [
"body"
],
"type": "object"
}