- 移除 TodoItem 中的 priority、created_at 和 updated_at 字段 - 强制每个任务都必须有唯一 id,且由用户负责生成 - 修改合并模式逻辑,merge=true 下保留未提及的旧任务 - 支持已完成和已取消任务重新激活(状态改回 pending 或 in_progress) - 禁止 in_progress 状态退回到 pending,必须标记为 completed 或 cancelled - 优化状态转换校验,允许特定状态间合法切换 - 简化任务变更消息,移除详细的新增/更新/移除统计 - 更新文档和示例,明确 id 必须由用户生成和使用 - 修复和补充测试,增强状态转换和合并模式验证 - 调整任务时间戳生成逻辑,统一使用当前时间及索引 - 该变更提供更合理的任务状态机械及管理模式,提升稳定性和易用性
49 lines
2.1 KiB
Markdown
49 lines
2.1 KiB
Markdown
# im +feed-shortcut-remove
|
|
|
|
> **Prerequisite:** Read [`../lark-shared/SKILL.md`](../../lark-shared/SKILL.md) for authentication, global parameters, and security rules.
|
|
|
|
This skill maps to shortcut: `lark-cli im +feed-shortcut-remove`. Underlying API: `POST /open-apis/im/v2/feed_shortcuts/remove`.
|
|
|
|
## What it does
|
|
|
|
Removes one or more chats from the **current user's** feed shortcuts.
|
|
|
|
- Only **CHAT-type** shortcuts are supported (`feed_card_id` must be an `oc_xxx`).
|
|
- Batch up to **10 chat IDs per call**.
|
|
- Currently only supports **user identity** (`--as user`).
|
|
- Removing a chat that is not currently in the shortcut list is idempotent success: the call returns `ok:true`, `failure_count=0`, and no `failed_shortcuts` entry for that chat.
|
|
|
|
## Commands
|
|
|
|
```bash
|
|
# Remove a single feed shortcut
|
|
lark-cli im +feed-shortcut-remove --as user --chat-id oc_xxx
|
|
|
|
# Remove multiple feed shortcuts in one call
|
|
lark-cli im +feed-shortcut-remove --as user --chat-id oc_a,oc_b
|
|
lark-cli im +feed-shortcut-remove --as user --chat-id oc_a --chat-id oc_b
|
|
|
|
# Preview the request
|
|
lark-cli im +feed-shortcut-remove --as user --chat-id oc_xxx --dry-run
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Required | Description |
|
|
|------|------|------|
|
|
| `--chat-id <oc_xxx>` | yes | open_chat_id to remove from feed shortcuts; repeatable or comma-separated; max 10 per call |
|
|
| `--as user` | yes | Server only accepts user_access_token for this API |
|
|
|
|
## Response
|
|
|
|
The response uses the same batch ledger as [`+feed-shortcut-create`](lark-im-feed-shortcut-create.md#response): `total`, `success_count`, `failure_count`, `succeeded_shortcuts`, and `failed_shortcuts`. A non-empty `failed_shortcuts` is a partial failure: stdout carries `ok:false` with the full ledger and the process exits non-zero (currently exit `1`).
|
|
|
|
## Permissions
|
|
|
|
- Required scope: `im:feed.shortcut:write`
|
|
- Only available with user identity (`--as user`).
|
|
|
|
## Note
|
|
|
|
- To see what is currently in the shortcut list before removing, run [`+feed-shortcut-list`](lark-im-feed-shortcut-list.md). Use `--no-detail` when you only need the `feed_card_id` values.
|