There are a lot of external LLM/AI memory managers out there and they use the most common denominator to expose the "memories": MCP
A typical setup is: a harness plugin that reads the conversations after they finish, create "memories" from them, then hope the next session uses that MCP tool to "remember" stuff. Where this fails is when you expect your agent to finally "learn" how you work. Even having to say "use your memory to see how we do releases" is friction, AND eventually, you'll forget to say that. Ideal world, iff an agent is going to be your colleague, you'd just say "cut a new release", and it would either know how to do it or would know where/how to get that information and follow that through.
One may argue that these instructions should be codified in `AGENTS.md` files but these are like your developer docs: always out of date (slightly if you are lucky and a lot if you are typical like myself).
With Lore, I'm trying to fix this by automatically injecting relevant preferences, gotchas, and "memories" into the context at multiple different points. Since we are an LLM gateway sitting between the harness and the LLM provider, we have full control over the context, and this is part of active context management.
1 comment
[ 3.6 ms ] story [ 10.2 ms ] threadA typical setup is: a harness plugin that reads the conversations after they finish, create "memories" from them, then hope the next session uses that MCP tool to "remember" stuff. Where this fails is when you expect your agent to finally "learn" how you work. Even having to say "use your memory to see how we do releases" is friction, AND eventually, you'll forget to say that. Ideal world, iff an agent is going to be your colleague, you'd just say "cut a new release", and it would either know how to do it or would know where/how to get that information and follow that through.
One may argue that these instructions should be codified in `AGENTS.md` files but these are like your developer docs: always out of date (slightly if you are lucky and a lot if you are typical like myself).
With Lore, I'm trying to fix this by automatically injecting relevant preferences, gotchas, and "memories" into the context at multiple different points. Since we are an LLM gateway sitting between the harness and the LLM provider, we have full control over the context, and this is part of active context management.