session_id. Save normal messages with remember. When someone mentions the bot, use recall to answer from that channel’s memory.
This uses the same isolation pattern as Scopes and multi-tenancy.
Slack tweaks
| Topic | What you do |
|---|---|
| Channel vs DM | You keep slack-{channel} for shared rooms; you append -{user} if you need private scratch space. |
| Noise | You filter joins, uploads, reactions before remember so you do not pay tokens for junk. |
| Latency | React with :thinking_face: right away. recall can take 1-3s. Post the final answer after recall finishes. |

