Analysis updated 2026-05-18
Let a Claude Code session pick up exactly where a Codex session left off without manually writing a handoff document.
Prevent two parallel AI agents from unknowingly overwriting each other by claiming files on a shared coordination board.
Ask any new AI agent what it knows about a specific module in your codebase and get facts saved by previous sessions.
| dan-calin/shared-agent-memory | ash310u/awesome-ai-stack | asqrzk/copilot-openrouter-to-ollama-proxy | |
|---|---|---|---|
| Stars | 2 | 2 | 2 |
| Language | JavaScript | JavaScript | JavaScript |
| Setup difficulty | easy | easy | moderate |
| Complexity | 2/5 | 2/5 | 2/5 |
| Audience | developer | vibe coder | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires Node 18+ and agents that support MCP configuration, agents must be restarted after install.
shared-agent-memory is a tool that gives all your AI coding agents a single shared memory so that what one agent learns, the others can immediately access. Without it, each new AI session starts from scratch and you have to manually copy context between agents by writing handoff files and pasting them around. This tool replaces that process with a searchable knowledge graph stored in a single JSON file on your machine. The technical approach is straightforward: it configures the memory MCP server, a standard memory system from the MCP protocol ecosystem, for each AI agent you use (Claude Code, Codex, or any other MCP-compatible tool) and points all of them at the same file. When an agent finishes a task, it saves a short note about what changed. When a new agent starts a task, it searches that memory for relevant prior context before doing anything. The memory is organized as named entities with short observations, plus relationships between them, so searching finds the right facts quickly without reading an ever-growing document. An optional coordination layer handles a second problem: two agents editing the same file at the same time and overwriting each other. You can turn it on with one command, after which agents can claim the files they intend to edit. The claims are advisory by default, meaning the system warns an agent if it is about to touch a file claimed by another agent but does not block the edit. A stricter mode that refuses the edit until the claim is released is also available. Claims expire automatically after two hours so a crashed session does not leave a file permanently locked. Installation uses one npx command that auto-detects which agents you have installed and configures the MCP server for each. Agents then use the memory automatically at the start and end of each task with no manual steps required. The full README is longer than what was shown.
An MCP-based tool that gives Claude Code, Codex, and other AI agents a single shared memory file so knowledge from one agent session is immediately available to the next.
Mainly JavaScript. The stack also includes JavaScript, Node.js, MCP.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.