add_project
Create new projects in Things 3 with title, notes, deadlines, tags, areas, and subtasks to organize your tasks and manage workflows effectively.
Instructions
创建新的项目。支持标题、备注、区域、标签、子任务等。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | 项目标题 | |
| notes | No | 备注内容 | |
| when | No | 时间安排: today, tomorrow, evening, anytime, someday, 日期或日期时间 | |
| deadline | No | 截止日期(yyyy-mm-dd) | |
| tags | No | 标签,逗号分隔 | |
| areaId | No | 区域ID | |
| area | No | 区域标题 | |
| todos | No | 子待办事项列表 | |
| completed | No | 是否标记为完成 | |
| canceled | No | 是否标记为取消 | |
| reveal | No | 是否导航进入项目 |
Input Schema (JSON Schema)
{
"properties": {
"area": {
"description": "区域标题",
"type": "string"
},
"areaId": {
"description": "区域ID",
"type": "string"
},
"canceled": {
"description": "是否标记为取消",
"type": "boolean"
},
"completed": {
"description": "是否标记为完成",
"type": "boolean"
},
"deadline": {
"description": "截止日期(yyyy-mm-dd)",
"type": "string"
},
"notes": {
"description": "备注内容",
"type": "string"
},
"reveal": {
"description": "是否导航进入项目",
"type": "boolean"
},
"tags": {
"description": "标签,逗号分隔",
"type": "string"
},
"title": {
"description": "项目标题",
"type": "string"
},
"todos": {
"description": "子待办事项列表",
"items": {
"type": "string"
},
"type": "array"
},
"when": {
"description": "时间安排: today, tomorrow, evening, anytime, someday, 日期或日期时间",
"type": "string"
}
},
"type": "object"
}