Show HN: YourMemory, agentic memory is a pruning problem, not a hoarding problem(yourmemoryai.vercel.app)
yourmemoryai.vercel.app
Show HN: YourMemory, agentic memory is a pruning problem, not a hoarding problem
https://yourmemoryai.vercel.app/
4 comments
I like the pruning-first framing. One question I’d be curious about is: what should the final artifact of pruning actually look like?
The final artifact will look like a flat scored memory graph, in which each node will be a memory having threshold between 0-1 which will be derived through various parameters such as recall, importance etc. Edges will connect semantically similar memories
felixlu2026(1)
In the current state of agentic memory most of the context is stored in the form of a MD file or is derived through a RAG model where you store each and everything. Both of the solution leads to bloated context which does not optimize the usage of any tokens.
In this system we only keep relevant data in our memory and prune all the unnecessary data. The relevance of a data is derived through multiple factors such as recall rate, importance, category, to which memory chain it's connected to etc. These parameters are fine tuned so that we can cater to both episodic memory and semantic memory.
Our memory layer keeps the size flat in this manner. You can draw correlation of this infrastructure with how Human brain store and prune memory.
The enterprise model is something very exciting as we can extract relevant memories from each user, agent and sub agent in this layer and that can be used by any one in the org, ensuring memory optimization at an enterprise level.