channel_read_ack
Advance a channel's read watermark to the last message you actually read, clearing unread counts. Idempotent and monotonic: earlier timestamps don't advance.
Instructions
把某频道的已读水位推进到你实际读到的那一条,清掉对应未读。
幂等且单调:传入时间早于或等于现有水位时不动,返回 advanced=false。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reader | Yes | 读者角色标识,如 "leader-cc",须与 channel_unread 用的一致。 | |
| channel | Yes | 频道名,与你刚才 channel_read 用的那个一致。 | |
| project_id | No | 归属项目;留空按当前工作目录自动归属。 | |
| last_read_at | Yes | ISO 8601 时间戳,取**本次实际读到的最后一条消息的 created_at**。 别传当前时间:分页只拿了前 N 条时按 now 推进会把没读到的那些一起标成 已读,之后再也不会提示,且没有任何机检抓得到。 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||