Loading...
Loading...
Feishu Task Management Tool, used for creating, querying, updating tasks and tasklists. **Use this Skill when**: (1) Need to create, query, update, or delete tasks (2) Need to create and manage tasklists (3) Need to view task lists or tasks within tasklists (4) User mentions "task", "to-do", "tasklist", "pending task" (5) Need to set task assignees, followers, and due dates
npx skill4agent add larksuite/openclaw-lark feishu-task2026-02-28T17:00:00+08:00| User Intent | Tool | action | Required Parameters | Highly Recommended | Common Optional |
|---|---|---|---|---|---|
| Create To-Do | feishu_task_task | create | summary | current_user_id (SenderId) | members, due, description |
| Query Incomplete Tasks | feishu_task_task | list | - | completed=false | page_size |
| Get Task Details | feishu_task_task | get | task_guid | - | - |
| Complete Task | feishu_task_task | patch | task_guid, completed_at | - | - |
| Revert Task Completion | feishu_task_task | patch | task_guid, completed_at="0" | - | - |
| Modify Due Date | feishu_task_task | patch | task_guid, due | - | - |
| Create Tasklist | feishu_task_tasklist | create | name | - | members |
| View Tasks in Tasklist | feishu_task_tasklist | tasks | tasklist_guid | - | completed |
| Add Tasklist Members | feishu_task_tasklist | add_members | tasklist_guid, members[] | - | - |
user_access_tokencurrent_user_idcurrent_user_idmemberscurrent_user_id{
"members": [
{"id": "ou_xxx", "role": "assignee"}, // Assignee
{"id": "ou_yyy", "role": "follower"} // Follower
]
}open_ididtasklist.creatememberstasklist.membersmembersmembersmembers{
"action": "patch",
"task_guid": "xxx",
"completed_at": "2026-02-26 15:30:00" // Beijing time string
}{
"action": "patch",
"task_guid": "xxx",
"completed_at": "0" // Special value "0" means revert completion
}{
"completed_at": "1740545400000" // Millisecond timestamp string
}| Member Type | Role | Description |
|---|---|---|
| user | owner | Owner, can transfer ownership |
| user | editor | Can edit, modify tasklist and tasks |
| user | viewer | Can view, read-only permission |
| chat | editor/viewer | The entire group gets the permission |
{
"action": "create",
"summary": "Prepare Weekly Meeting Materials",
"description": "Organize this week's work progress and next week's plan",
"current_user_id": "ou_sender's_open_id",
"due": {
"timestamp": "2026-02-28 17:00:00",
"is_all_day": false
},
"members": [
{"id": "ou_collaborator's_open_id", "role": "assignee"}
]
}summarycurrent_user_idmembers{
"action": "list",
"completed": false,
"page_size": 20
}{
"action": "patch",
"task_guid": "task_guid",
"completed_at": "2026-02-26 15:30:00"
}{
"action": "patch",
"task_guid": "task_guid",
"completed_at": "0"
}{
"action": "create",
"name": "Product Iteration v2.0",
"members": [
{"id": "ou_xxx", "role": "editor"},
{"id": "ou_yyy", "role": "viewer"}
]
}{
"action": "tasks",
"tasklist_guid": "tasklist_guid",
"completed": false
}{
"action": "create",
"summary": "Annual Summary",
"due": {
"timestamp": "2026-03-01 00:00:00",
"is_all_day": true
}
}| Error Phenomenon | Root Cause | Solution |
|---|---|---|
| Cannot edit task after creation | Did not add yourself to members when creating | At least add the current user (SenderId) as assignee or follower when creating |
| patch fails with task_guid missing prompt | Did not pass task_guid parameter | Must pass task_guid for patch/get |
| tasks fails with tasklist_guid missing prompt | Did not pass tasklist_guid parameter | Must pass tasklist_guid for tasklist.tasks action |
| Revert completion fails | Incorrect completed_at format | Use the string |
| Incorrect time | Used Unix timestamp | Use ISO 8601 format (with time zone): |
Tasklist
└─ Custom Section (Optional)
└─ Task
├─ Members: assignee, follower
├─ Subtask
├─ Due Date, Start Time
└─ Attachments, Commentstask_guidtasklist_guidtask.guidlisttasklist.guidlisttasklists{
"action": "create",
"summary": "Task Title",
"tasklists": [
{
"tasklist_guid": "tasklist_guid",
"section_guid": "section_guid (optional)"
}
]
}repeat_rule{
"action": "create",
"summary": "Weekly Meeting",
"due": {"timestamp": "2026-03-03 14:00:00", "is_all_day": false},
"repeat_rule": "FREQ=WEEKLY;INTERVAL=1;BYDAY=MO"
}