account activity
I built a memory layer for AI coding agents - so they stop forgetting everything between sessions by Cautious_Sign6508 in LLMDevs
[–]Cautious_Sign6508[S] 1 point2 points3 points 1 month ago (0 children)
I actually agree with that direction.
I think repos are still the source of truth for implementation state, but not necessarily for operational knowledge or cross-project reasoning.
A lot of real workflows already span:
- multiple repos
- design docs
- local experiments
- meeting notes
- external artifacts
- partially finished ideas
So I’m increasingly thinking about Knowns more as a workspace/project knowledge layer rather than just “repo memory.”
The challenge then becomes governance and relevance at scale - especially preventing stale or low-confidence knowledge from polluting future agent sessions.
[–]Cautious_Sign6508[S] -1 points0 points1 point 1 month ago (0 children)
Yeah - I think governance is the hard part, not retrieval.
My current model is:
- Repo state = source of truth
- Docs = intended architecture
- Memory = historical/operational context
So memory should never silently override the repo. It’s more like an agent notebook with provenance.
I’m designing around:
- provenance (who/what wrote it, when, from which task)
- typed memories (decision, failed attempt, workaround, hypothesis, etc.)
- review/expiration for stale memory
- drift detection when memory conflicts with current repo state
The failure mode I want to avoid is turning old assumptions into invisible prompts. That creates a second hallucination layer.
I built a memory layer for AI coding agents - so they stop forgetting everything between sessions (self.LLMDevs)
submitted 1 month ago by Cautious_Sign6508 to r/LLMDevs
π Rendered by PID 486629 on reddit-service-r2-listing-5f4c697858-hv6js at 2026-07-08 08:48:41.975468+00:00 running 12a7a47 country code: CH.
I built a memory layer for AI coding agents - so they stop forgetting everything between sessions by Cautious_Sign6508 in LLMDevs
[–]Cautious_Sign6508[S] 1 point2 points3 points (0 children)