diff --git a/skills/lark-task/references/lark-task-assign.md b/skills/lark-task/references/lark-task-assign.md index 9987e6857..9f07495e3 100644 --- a/skills/lark-task/references/lark-task-assign.md +++ b/skills/lark-task/references/lark-task-assign.md @@ -10,6 +10,9 @@ Assign or remove members (assignees) from a task. # Add an assignee lark-cli task +assign --task-id "" --add "ou_aaa" +# Add an app assignee +lark-cli task +assign --task-id "" --add "cli_xxx" + # Transfer an assignee (remove old, add new) lark-cli task +assign --task-id "" --remove "ou_old" --add "ou_new" @@ -22,8 +25,8 @@ lark-cli task +assign --task-id "" --add "ou_aaa,ou_bbb" | Parameter | Required | Description | |-----------|----------|-------------| | `--task-id ` | Yes | The task GUID to modify. For Feishu task applinks, use the `guid` query parameter, not the `suite_entity_num` / display task ID like `t104121`. | -| `--add ` | No | Comma-separated list of user `open_id`s to add as assignees. | -| `--remove ` | No | Comma-separated list of user `open_id`s to remove from assignees. | +| `--add ` | No | Comma-separated assignee IDs. Use user `open_id`s like `ou_xxx` for people, or app IDs like `cli_xxx` for apps. | +| `--remove ` | No | Comma-separated assignee IDs. Use user `open_id`s like `ou_xxx` for people, or app IDs like `cli_xxx` for apps. | ## Workflow diff --git a/skills/lark-task/references/lark-task-create.md b/skills/lark-task/references/lark-task-create.md index 5bf3dec1c..e281a57b9 100644 --- a/skills/lark-task/references/lark-task-create.md +++ b/skills/lark-task/references/lark-task-create.md @@ -15,6 +15,11 @@ lark-cli task +create \ --due "2026-03-25" \ --tasklist-id "https://applink.larkoffice.com/client/todo/task_list?guid=a4b00000-000-000-000-00000000036c" +# Create a task assigned to an app +lark-cli task +create \ + --summary "Nightly Sync" \ + --assignee "cli_xxx" + # Create a simple task lark-cli task +create \ --summary "Buy milk" @@ -29,7 +34,8 @@ lark-cli task +create --summary "Test Task" --dry-run |-----------|----------|-------------| | `--summary ` | Yes | The title or summary of the task | | `--description ` | No | Detailed description of the task | -| `--assignee ` | No | The `open_id` of the user to assign the task to (e.g., `ou_xxx`) | +| `--assignee ` | No | Assignee ID. Use user `open_id` like `ou_xxx` for people, or app ID like `cli_xxx` for apps. | +| `--follower ` | No | Follower ID. Use user `open_id` like `ou_xxx` for people, or app ID like `cli_xxx` for apps. | | `--due