extend_current_task
Add subtasks to break down complex tasks into manageable steps, maintaining focus and context. Supports hierarchical task structures for organized problem-solving and flexible task switching.
Instructions
Add a subtask to organize and decompose work. Creates hierarchical structure for complex tasks. Subtasks help break down work into manageable pieces. You can work on tasks in any order using switch_focus. Example: Task A → Task B → Task C creates a nested structure, but you can jump between them freely. For unrelated work, use create_new_task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Full task context, notes, and details | |
title | Yes | Brief task description (max 256 chars) |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Full task context, notes, and details",
"type": "string"
},
"title": {
"description": "Brief task description (max 256 chars)",
"type": "string"
}
},
"required": [
"title",
"body"
],
"type": "object"
}