[claude] fix: restore live timestamp to HotMemory.read() (#1339) (#1353)
Some checks failed
Tests / lint (push) Has been cancelled
Tests / test (push) Has been cancelled

This commit was merged in pull request #1353.
This commit is contained in:
2026-03-24 02:55:48 +00:00
parent cddfd09c01
commit cd0f718d6b

View File

@@ -89,7 +89,12 @@ class HotMemory:
"""Read hot memory — computed view of top facts + last reflection from DB."""
try:
facts = recall_personal_facts()
lines = ["# Timmy Hot Memory\n"]
now = datetime.now(UTC).strftime("%Y-%m-%d %H:%M UTC")
lines = [
"# Timmy Hot Memory\n",
f"> Working RAM — always loaded, ~300 lines max, pruned monthly",
f"> Last updated: {now}\n",
]
if facts:
lines.append("## Known Facts\n")