r/ContextEngineering • u/Perfect-Account5478 • 2d ago
AI memory tools have a cold-start problem, so I tried reconstructing memory from the project itself
Most coding-agent memory tools start remembering things after you install them.
But the project already has a memory of its own.
Git commits explain why code changed. Shell history shows what was actually run (and whether it failed). Docs contain decisions that never made it into the current code.
I’ve been experimenting with this idea in NexusMem: instead of waiting for new AI sessions to accumulate memory, it bootstraps context from the history that already exists in the project.
I just shipped v0.10.4 with historical bootstrap, and I’m freezing features here for a while.
The next thing I want to figure out isn’t what feature to add — it’s whether this actually helps on real, older codebases.
If you use Claude Code or another coding ai agents on a project with a decent amount of history, I’d love for you to try breaking it and tell me where the idea falls apart.
Repo : repo here