- 移除 TodoItem 中的 priority、created_at 和 updated_at 字段 - 强制每个任务都必须有唯一 id,且由用户负责生成 - 修改合并模式逻辑,merge=true 下保留未提及的旧任务 - 支持已完成和已取消任务重新激活(状态改回 pending 或 in_progress) - 禁止 in_progress 状态退回到 pending,必须标记为 completed 或 cancelled - 优化状态转换校验,允许特定状态间合法切换 - 简化任务变更消息,移除详细的新增/更新/移除统计 - 更新文档和示例,明确 id 必须由用户生成和使用 - 修复和补充测试,增强状态转换和合并模式验证 - 调整任务时间戳生成逻辑,统一使用当前时间及索引 - 该变更提供更合理的任务状态机械及管理模式,提升稳定性和易用性
4.9 KiB
im +feed-shortcut-list
Prerequisite: Read
../lark-shared/SKILL.mdfor authentication, global parameters, and security rules.
This skill maps to shortcut: lark-cli im +feed-shortcut-list. Underlying API: GET /open-apis/im/v2/feed_shortcuts.
What it does
Lists one page of the current user's feed shortcuts.
- Only CHAT-type shortcuts are exposed via OpenAPI today (others in the IDL are not yet whitelisted).
- The shortcut is a thin one-page wrapper — there is no built-in auto-pagination. Callers drive their own loop when they actually need to paginate.
- Server-side page size is controlled by the service; in normal use one page usually covers the list.
- Pagination tokens are opaque. If a token is rejected because the shortcut list changed, restart by omitting
--page-token.
Commands
# First page (the only call most users ever need — --page-token omitted)
lark-cli im +feed-shortcut-list --as user
# Continue from the previous response's page_token
lark-cli im +feed-shortcut-list --as user --page-token <token-from-previous-response>
# Skip detail enrichment when only IDs are needed; avoids the extra im:chat:read lookup
lark-cli im +feed-shortcut-list --as user --no-detail -q '.data.shortcuts[].feed_card_id'
If you need to walk every page, write the loop yourself: read
data.page_tokenfrom each response and pass it back in untilhas_more=false. The shortcut intentionally does not auto-walk because page-token errors require the caller to decide whether to restart from the first page.
Parameters
| Parameter | Required | Description |
|---|---|---|
--page-token <token> |
no | Opaque pagination token from the previous response. Omit it for the first page. |
--no-detail |
no (default false) |
Skip fetching each entry's full info object. By default enrichment is enabled: CHAT-type entries call im.chats.batch_query, need im:chat:read, and attach the object under the detail field. Pass --no-detail to skip the extra call and scope. |
--as user |
yes | Server only accepts user_access_token for this API |
Response Structure
| Field | Type | Description |
|---|---|---|
shortcuts |
array | Feed shortcut entries; each has feed_card_id (oc_xxx) and type (1=CHAT). By default (without --no-detail), each entry also has a detail field with the full per-type info object. |
has_more |
boolean | Whether more pages exist |
page_token |
string | Opaque token to pass to the next call when continuing pagination |
Example (with detail enrichment, CHAT type):
{
"data": {
"shortcuts": [
{
"feed_card_id": "oc_092f0100fe59c35995727db1039777a8",
"type": 1,
"detail": {
"chat_id": "oc_092f0100fe59c35995727db1039777a8",
"chat_mode": "group",
"name": "Engineering",
"avatar": "https://...",
"description": "",
"external": false,
"owner_id": "ou_xxx",
"owner_id_type": "open_id",
"tenant_key": "..."
}
},
{
"feed_card_id": "oc_c82061d126a06635aa3569587b134bb1",
"type": 1,
"detail": {
"chat_id": "oc_c82061d126a06635aa3569587b134bb1",
"chat_mode": "p2p",
"name": "",
"p2p_target_id": "ou_xxx",
"p2p_target_type": "user",
"avatar": "",
"description": "",
"external": false,
"tenant_key": "..."
}
}
],
"has_more": false,
"page_token": "v1.example-opaque-token"
}
}
Detail Enrichment
The detail payload is dispatched per type. Today only CHAT is wired in; future shortcut types can attach different object shapes. Callers should switch on type before parsing detail. For CHAT (type=1):
- Source:
POST /open-apis/im/v1/chats/batch_query(50 ids per call, server limit). - Payload: the full chat object is passed through verbatim —
chat_id,chat_mode(group/p2p/topic),name,avatar,description,external,tenant_key, plus type-specific fields (owner_id*for groups,p2p_target_*for p2p). - P2P chats return an empty
namebecause the Feishu client renders the partner's display name there. The rest of the object (especiallyp2p_target_id) still flows through, so callers can resolve the partner via+contact-searchif a display title is needed. - Lookup failure (missing scope, network error) → the list still returns successfully; a warning is printed to stderr, the data payload carries a
_noticefield ("detail enrichment skipped: ..."), and affected entries simply lack thedetailfield. Check_noticeto tell "enrichment skipped" from "nothing to enrich".
Permissions
- Required scope:
im:feed.shortcut:read - Conditional scope (default detail path only):
im:chat:read; pass--no-detailto avoid this extra scope and lookup. - Only available with user identity (
--as user).