create-todo
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseCreate Todo
创建待办任务
Create a day-level TODO task.
创建日级粒度的待办任务。
Instructions
使用说明
Call .
create-todojson
create-todo({
"title": "Implement HubSpot OAuth callback handler",
"description": "Handle auth code exchange and token persistence",
"status": "Planned",
"workspaceId": "<workspaceId>",
"initiativeId": "<initiativeId>"
})Use when the task should be linked via relation.
initiativeIdPART_OFFor implementation write-back, prefer a completed task linked to the initiative:
json
create-todo({
"title": "Implemented HubSpot lead sync auth + sync",
"description": "## Changes\n- What changed: Built OAuth callback flow, sync worker, and retry handling\n- Why: Enable stable end-to-end HubSpot lead sync flow",
"status": "Completed",
"workspaceId": "<workspaceId>",
"initiativeId": "<initiativeId>"
})Use in new TODO descriptions only when the TODO represents completed external implementation work.
Changes/Why调用。
create-todojson
create-todo({
"title": "Implement HubSpot OAuth callback handler",
"description": "Handle auth code exchange and token persistence",
"status": "Planned",
"workspaceId": "<workspaceId>",
"initiativeId": "<initiativeId>"
})当任务需要通过关系关联时,请使用参数。
PART_OFinitiativeId对于实现回写场景,优先创建关联到initiative的已完成任务:
json
create-todo({
"title": "Implemented HubSpot lead sync auth + sync",
"description": "## Changes\n- What changed: Built OAuth callback flow, sync worker, and retry handling\n- Why: Enable stable end-to-end HubSpot lead sync flow",
"status": "Completed",
"workspaceId": "<workspaceId>",
"initiativeId": "<initiativeId>"
})仅当待办项代表已完成的外部实现工作时,才在新待办的描述中使用结构。
Changes/Why