paper-with-me

홈 › Papers

GitOfThoughts: Version-Controlled Reasoning and Agent Memory You Can Replay, Diff, and Merge

2026-06-12 · Pavan C Shekar, Abhishek H S, Aswanth Krishnan arxiv

Large language model reasoning leaves no trace once it is done. The steps of a chain of thought disappear when the context window closes, a pruned search branch is just gone, and memory buffers cannot be diffed, merged, or audited. Code, infrastructure, and experiments are all version-controlled. Reasoning is not. GitOfThoughts stores an agent's reasoning tree as a git repository. Every scored thought becomes a commit, scores become notes, outcomes become tags, and retrieval is just git log over the agent's own history. We use this to test something simple. Does giving an agent memory from past problems actually make it more accurate? We tried five memory stores (none, a markdown file, a vector database, a graph, and git) across two benchmarks, two model sizes, and several pre-registered repeat experiments. The answer, on new problems, is no, including one promising early result that did not hold up when we repeated it. Memory only helps once the problem being solved is nearly identical to something already in memory (cosine similarity above about 0.8); below that, it does nothing. In other words, the model is finding the answer rather than learning the method. Even a model 4.5x larger still cannot pull a reusable method out of a worked example; it just gets better at spotting near-copies. The only thing that reliably helped on new problems was generating several answers and picking the most common one (self-consistency). So the case for using git as the memory store is not that it retrieves better. It is that it gives auditability, history, and the ability to merge two agents' memories, at no cost to accuracy.

📄 PDF Abstract BibTeX arXiv:2606.14470

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

AgentSpec: Understanding Embodied Agent Scaffolds Through Controlled Composition

2026-06-12 · Jixuan Chen, Jianzhi Shen, Haoqiang Kang, Zhi Hong 외 arxiv

LLM agents are increasingly built not as single model calls, but as scaffolded systems that combine reasoning, memory, reflection, action execution, and learning. While such scaffolds often improve performance, they are …

Jev-Mem: System-One-Controlled Agentic Memory for Efficient AI Agents

2026-09-21 · Dongming Jiang, Yi Li, Bingzhe Li hf

Agentic memory is becoming essential for long-horizon AI agents, yet many existing systems rely on autoregressive LLMs to control how memories are organized, retrieved, and used, placing expensive generation on the criti…

SubtleMemory: A Benchmark for Fine-Grained Relational Memory Discrimination in Long-Horizon AI Agents

2026-06-04 · Wenxuan Wang, Haoyu Sun, Fukuan Hou, Mingyang Song 외 arxiv

Persistent AI assistants, such as OpenClaw, accumulate large collections of related memories over long-term interactions. As these memories grow, they may reinforce one another, diverge across contexts, or directly confl…

Memory Intelligence Agent

2026-04-06 · Jingyang Qiao, Weicheng Meng, Yu Cheng, Zhihang Lin 외 arxiv

Deep research agents (DRAs) integrate LLM reasoning with external tools. Memory systems enable DRAs to leverage historical experiences, which are essential for efficient reasoning and autonomous evolution. Existing metho…

Reinforcement Learning

Agent-ScanKit: Unraveling Memory and Reasoning of Multimodal Agents via Sensitivity Perturbations

2025-10-01 · Pengzhou Cheng, Lingzhong Dong, Zeng Wu, Zongru Wu 외 arxiv

Although numerous strategies have recently been proposed to enhance the autonomous interaction capabilities of multimodal agents in graphical user interface (GUI), their reliability remains limited when faced with comple…