When I create a new thread on the agent UX toolbox in slack, this does not create a new chat (and does not trigger the memory write hook).
Findings from my review;
Looking at the logs, here's what actually occurred:
The previous session was in Slack thread 1773321908.720229 (session ID 6be56867). Willy handled several messages there, and at some point wrote the single memory entry manually.
The "new session" at 21:38:42 came from a brand-new Slack thread 1773351433.743289 with a fresh session ID 9fb0b27e. This is the session you're looking at now.
Why no memory was written: The session-memory hook is registered to fire on command:new and command:reset events — these are triggered only when you explicitly send /new or /reset to Willy in the existing thread. Starting a fresh DM thread in Slack doesn't fire either of those commands, so the hook never ran and no automated session summary was written.
Can you confirm this? And don't you consider this an issue?