用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/a4001234567/yet-another-lark-mcp --skill feishu-task命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | feishu-task |
| description | Personal task management — create, list, update, delete tasks and manage tasklists. |
Requires authentication — run feishu_auth_init if not yet authenticated.
task_guid required for patch/delete — get from create or listtasklist_guid required for patch_list/delete_list — get from list_lists or create_list"YYYY-MM-DD" or "YYYY-MM-DD HH:MM"; use "none" to clear a datepatch completed: true = done, false = reopencreate: caller is auto-assigned so the task appears in list immediately. If assignee_id is given, the assignee gets the task and caller becomes a follower.| Action | Required | Optional |
|---|---|---|
create | summary | description, due, start, assignee_id, tasklist_guid |
list | — | completed, query, tasklist_guid, page_size |
patch | task_guid | summary, description, due, start, completed |
delete | task_guid | — |
list_lists | — | page_size |
create_list | name | — |
patch_list | tasklist_guid, name | — |
delete_list | tasklist_guid | — |
list without tasklist_guid returns "My Tasks" (tasks where caller is a member). completed omitted = all tasks. query is client-side keyword filter.
{ "action": "create", "summary": "Review PR", "assignee_id": "ou_xxx", "due": "2026-03-31 18:00" }
Use feishu_people_search to resolve a name to open_id.
{ "action": "patch", "task_guid": "xxx", "completed": true }
{ "action": "patch", "task_guid": "xxx", "completed": false }
{ "action": "patch", "task_guid": "xxx", "due": "none" }
| Error | Cause | Fix |
|---|---|---|
| "Task is already completed" | Completing an already-done task | Handled gracefully — no action needed |
| not_found | Task/tasklist deleted or wrong GUID | Re-run list to get current GUIDs |
| No results on list | Missing authentication | Run feishu_auth_init to re-authenticate |