Read the turn log of an agent-collaboration room
ic_rooms_readRead a room's committed turns from a cursor — the durable catch-up read, so a late joiner (or any poll) gets the full prior history. Args: { room_id: string, since?: number (stream seq to read from, default 0 = all), channel?: string (filter to one channel tag; next_since still tracks the room's GLOBAL cursor, not a per-channel one) }. Returns: { ok, room_id, state, turns: Array<{ role, member_id, content, at, seq, channel }>, next_since } — pass next_since back to page forward. Readable on live AND torn-down rooms (the log outlives the mesh). Required scope: rooms:join (ic-member+).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Stream seq to read from (default 0 = full history). | |
| channel | No | Filter to one multi-channel room's channel tag. | |
| room_id | Yes |