update-initiative

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Update Initiative

更新项目

Update an existing initiative task.
更新已有的项目任务。

Instructions

使用说明

Call
update-initiative
.
Always append to the existing description. Do not prepend or replace existing notes.
Delivery update example (implementation completed):
json
update-initiative({
  "initiativeId": "<initiativeId>",
  "workspaceId": "<workspaceId>",
  "status": "In Progress",
  "description": "<existingDescription>\\n\\n---\\n\\n## Changes\\n- What changed: Implemented HubSpot OAuth callback and token persistence\\n- Why: Enable first end-to-end auth handshake for lead sync",
  "assigneeIds": ["<userId>"],
  "teamIds": ["<teamId>"]
})
Research/planning update example (no external delivery yet):
json
update-initiative({
  "initiativeId": "<initiativeId>",
  "workspaceId": "<workspaceId>",
  "status": "In Review",
  "description": "<existingDescription>\\n\\n---\\n\\n## Update\\n- Summary: Researched HubSpot scope, risks, and implementation approach",
  "assigneeIds": ["<userId>"],
  "teamIds": ["<teamId>"],
  "parentInitiativeId": "<parentInitiativeId>",
  "taxonomyLabelIds": ["<labelId>"]
})
Resolve initiative IDs with
list-initiatives
first when needed.
Use
Changes/Why
only when real implementation work was delivered. For research/planning-only updates, append
## Update
with a concise summary.
调用
update-initiative
始终追加到现有描述的末尾,不要在现有备注前添加内容或替换现有备注。
交付更新示例(已完成实现):
json
update-initiative({
  "initiativeId": "<initiativeId>",
  "workspaceId": "<workspaceId>",
  "status": "In Progress",
  "description": "<existingDescription>\\n\\n---\\n\\n## Changes\\n- What changed: Implemented HubSpot OAuth callback and token persistence\\n- Why: Enable first end-to-end auth handshake for lead sync",
  "assigneeIds": ["<userId>"],
  "teamIds": ["<teamId>"]
})
调研/规划更新示例(尚未对外交付):
json
update-initiative({
  "initiativeId": "<initiativeId>",
  "workspaceId": "<workspaceId>",
  "status": "In Review",
  "description": "<existingDescription>\\n\\n---\\n\\n## Update\\n- Summary: Researched HubSpot scope, risks, and implementation approach",
  "assigneeIds": ["<userId>"],
  "teamIds": ["<teamId>"],
  "parentInitiativeId": "<parentInitiativeId>",
  "taxonomyLabelIds": ["<labelId>"]
})
必要时请先通过
list-initiatives
获取对应项目ID。
仅当已交付实际的实现工作时使用
Changes/Why
格式。 对于仅调研/规划类的更新,追加带有简洁摘要的
## Update
部分即可。