[claude] fix: restore live timestamp to HotMemory.read() (#1339) #1353
Reference in New Issue
Block a user
Delete Branch "claude/issue-1339"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #1339
Refs #10
What
The DB-backed
HotMemory.read()dropped the> Last updated:header that the old file-based template included. This meant callers saw no indication of when hot memory was last computed, and the stale-timestamp problem from issue #10 had no equivalent fix in the new code path.Change
Added the current UTC timestamp to the computed output in
HotMemory.read()so the timestamp is always fresh — never stale from a persisted file.Tests
754 unit tests pass (
tox -e unit).