add_task
Add tasks to your todo list with priority levels and estimated Pomodoro sessions to organize work using timed productivity techniques.
Instructions
Add a new task to the todo list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Task title | |
| description | No | Task description | |
| priority | Yes | Task priority | |
| estimatedPomodoros | Yes | Estimated number of pomodoros needed |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Task description",
"type": "string"
},
"estimatedPomodoros": {
"description": "Estimated number of pomodoros needed",
"type": "number"
},
"priority": {
"description": "Task priority",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"title": {
"description": "Task title",
"type": "string"
}
},
"required": [
"title",
"priority",
"estimatedPomodoros"
],
"type": "object"
}