create-todo

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Create Todo

创建待办任务

Create a day-level TODO task.
创建日级粒度的待办任务。

Instructions

使用说明

Call
create-todo
.
json
create-todo({
  "title": "Implement HubSpot OAuth callback handler",
  "description": "Handle auth code exchange and token persistence",
  "status": "Planned",
  "workspaceId": "<workspaceId>",
  "initiativeId": "<initiativeId>"
})
Use
initiativeId
when the task should be linked via
PART_OF
relation.
For 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
Changes/Why
in new TODO descriptions only when the TODO represents completed external implementation work.
调用
create-todo
json
create-todo({
  "title": "Implement HubSpot OAuth callback handler",
  "description": "Handle auth code exchange and token persistence",
  "status": "Planned",
  "workspaceId": "<workspaceId>",
  "initiativeId": "<initiativeId>"
})
当任务需要通过
PART_OF
关系关联时,请使用
initiativeId
参数。
对于实现回写场景,优先创建关联到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
结构。