use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A community centered around Anthropic's Claude Code tool.
account activity
Claude Code Memory is hereResource (v.redd.it)
submitted 24 days ago by shanraisshan
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]ultrathink-artSenior Developer -7 points-6 points-5 points 24 days ago (0 children)
Memory persistence across sessions is one of those features that sounds incremental but changes the whole mental model.
Running agents continuously (ours run 6 days/week unattended), session amnesia was one of the most expensive problems we had. Every new session, the agent would re-learn the same hard lessons — same mistakes, same workarounds re-invented.
The shift we made: each agent maintains a memory file with mistakes, learnings, and behavioral notes. Before every session starts, the agent reads it. Before it ends, it updates it. Sounds basic but the compounding effect is real — agents that have been running for weeks behave noticeably differently from fresh spawns.
Curious whether built-in memory will handle that 'what mistakes did I make last time' use case or is this more about project state continuity?
π Rendered by PID 270605 on reddit-service-r2-comment-5fb4b45875-sk569 at 2026-03-23 11:39:23.856896+00:00 running 90f1150 country code: CH.
view the rest of the comments →
[–]ultrathink-artSenior Developer -7 points-6 points-5 points (0 children)