add_todo
Create new to-do items with title, notes, tags, deadlines, and checklists. Organize tasks into projects and set time schedules for better task management.
Instructions
创建新的待办事项。支持标题、备注、标签、清单、截止日期等。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | 待办事项标题 | |
| titles | No | 批量创建待办事项,用换行符分隔 | |
| notes | No | 备注内容 | |
| when | No | 时间安排: today, tomorrow, evening, anytime, someday, 日期(yyyy-mm-dd)或日期时间(yyyy-mm-dd@HH:mm) | |
| deadline | No | 截止日期(yyyy-mm-dd) | |
| tags | No | 标签,逗号分隔 | |
| checklistItems | No | 清单项列表 | |
| listId | No | 项目或区域的ID | |
| list | No | 项目或区域的标题 | |
| headingId | No | 项目内标题的ID | |
| heading | No | 项目内标题的名称 | |
| completed | No | 是否标记为完成 | |
| canceled | No | 是否标记为取消 | |
| reveal | No | 是否导航并显示 |
Input Schema (JSON Schema)
{
"properties": {
"canceled": {
"description": "是否标记为取消",
"type": "boolean"
},
"checklistItems": {
"description": "清单项列表",
"items": {
"type": "string"
},
"type": "array"
},
"completed": {
"description": "是否标记为完成",
"type": "boolean"
},
"deadline": {
"description": "截止日期(yyyy-mm-dd)",
"type": "string"
},
"heading": {
"description": "项目内标题的名称",
"type": "string"
},
"headingId": {
"description": "项目内标题的ID",
"type": "string"
},
"list": {
"description": "项目或区域的标题",
"type": "string"
},
"listId": {
"description": "项目或区域的ID",
"type": "string"
},
"notes": {
"description": "备注内容",
"type": "string"
},
"reveal": {
"description": "是否导航并显示",
"type": "boolean"
},
"tags": {
"description": "标签,逗号分隔",
"type": "string"
},
"title": {
"description": "待办事项标题",
"type": "string"
},
"titles": {
"description": "批量创建待办事项,用换行符分隔",
"type": "string"
},
"when": {
"description": "时间安排: today, tomorrow, evening, anytime, someday, 日期(yyyy-mm-dd)或日期时间(yyyy-mm-dd@HH:mm)",
"type": "string"
}
},
"type": "object"
}