Memory Persistence Not Working #112
-
|
Hi! For some reason I do not see that my generated *session.tmp files are being updated on session end. I'm using latest Claude code and have the everything-claude-code plugin installed and enabled. I created a dummy sessionEnd hook and saw it works. Any tips on how to debug this problem? Using debug agents didn't seem to provide any solution. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
As of the current repo, the important detail is that session persistence moved to the So if your dummy
Concrete debug path:
If this keeps coming up I should add a troubleshooting section specifically for session persistence. |
Beta Was this translation helpful? Give feedback.
As of the current repo, the important detail is that session persistence moved to the
Stoplifecycle, not the oldSessionEndassumption. The reason is simple:Stopreliably carriestranscript_path, which the persistence and eval scripts need.So if your dummy
SessionEndhook fires but*session.tmpis not updating, the likely causes are:Stophook not installed or not enabledConcrete debug path:
Stopentry for session-endECC_DISABLED_HOOKSis not disablingsto…