Blog·Learning

OpenCode Memory: Persistent Memory Across Sessions (2026)

OpenCode forgets everything when the session ends. The supermemory plugin gives it persistent memory - your style, your codebase, your decisions - with a two-command install. And your memories follow the repo across OpenCode, Claude Code, and Codex.

By Dhravya Shah·4 min read

OpenCode is the best open-source coding agent right now, and I say that as someone who rotates between three of them. But it has the same amnesia they all have: close the session, and everything it learned about you is gone.

"We use bun, not npm." "That function looks ugly on purpose. Don't touch it." "The staging deploy fails if .env.local is missing."

You explain it Monday. You explain it Tuesday. OpenCode writes great code and remembers nothing.

So we built the plugin.

The two-command install

bunx opencode-supermemory@latest install
bunx opencode-supermemory@latest login

That's it. The installer registers the plugin in ~/.config/opencode/opencode.jsonc and adds a /supermemory-init command. Check the connection any time with bunx opencode-supermemory@latest status. (GitHub)

Or skip the terminal entirely: paste the README link into OpenCode and let the agent install it for you.

What you get out of the box

Once installed, the plugin runs on its own. No prompting, no ceremony:

  • Context injection - on your first message of a session, the agent silently receives your personal profile, the project's memories, and relevant past memories with confidence scores. It just knows things.
  • Reasoned recall - every turn, the agent decides whether recalling memory would actually help this message, and only searches when it's worth it. Trivial messages don't burn a network call.
  • Automatic capture - completed conversation turns are saved in batches, and flushed when the session ends. Nothing you did is lost.
  • Keyword detection - say "remember that..." or "don't forget..." and it's saved. Add your own trigger phrases in config.
  • Preemptive compaction - when context hits 80%, the plugin feeds your project memories into OpenCode's summarization and saves the session summary as a memory. Compaction stops being amnesia.
  • /supermemory-init - point the agent at your codebase and it explores, then memorizes the architecture, patterns, and conventions.

A typical session after a week of use looks like this:

You: "add rate limiting to the ingest endpoint"
OpenCode: [recalls the sliding-window Redis limiter you built
for payments-api last month, and that you prefer
middleware over decorators - writes it that way]

The part nobody else does: memory that follows the repo, not the agent

Here's the thing I actually love about this plugin.

Every supermemory coding-agent plugin - OpenCode, Claude Code, Codex - writes to the same shared container for a repository, derived from the repo's git origin remote. Personal memories and project memories stay separate inside it (sm_scope metadata), but the container is one.

Which means: memorize something in Claude Code on Monday, and OpenCode recalls it on Tuesday. Onboard a teammate in Codex, and the project knowledge is already there when you open the repo in OpenCode. Your agent stack stops being three goldfish and becomes one memory.

Repositories with the same folder name but different remotes stay isolated. No origin remote? It falls back to the real filesystem path. And if you used an older version of any of the plugins, the legacy containers are still read - upgrading needs no migration.

The supermemory tool

The agent gets one tool with five modes, auto-approved where it matters:

Mode What it does
add Store a memory (typed: project-config, architecture, error-solution, preference, learned-pattern, conversation)
search Semantic search across memories
profile View your user profile
list List memories by scope
forget Delete a memory

Scopes are user (your personal memories for this project) and project (shared project knowledge, the default).

Knobs worth turning

Everything lives in ~/.config/opencode/supermemory.jsonc, all optional:

{
  // point at a self-hosted instance
  "baseUrl": "https://api.supermemory.ai",

  // retrieval tuning
  "similarityThreshold": 0.55,
  "maxMemories": 5,
  "maxProjectMemories": 10,

  // capture cadence: save every N turns (0 = session end only)
  "captureEveryNTurns": 3,

  // when compaction kicks in (0-1)
  "compactionThreshold": 0.8,

  // your own "save this" triggers (regex)
  "keywordPatterns": ["log\\s+this", "write\\s+down"],
}

SUPERMEMORY_API_KEY takes precedence over the config file, which keeps keys out of dotfiles if you prefer. Running Oh My OpenCode? Disable its built-in auto-compact hook so supermemory owns compaction - one line in its config, covered in the README.

Privacy and self-hosting

Two things worth knowing:

  1. <private> tags are redacted before storage. Wrap an API key, a customer's name, anything - it never reaches memory.
  2. Everything can run on your machine. Supermemory is MIT-licensed and self-hosts as a single binary, fully offline. Set baseUrl to your local instance and nothing leaves the box.

Why not just use the supermemory MCP?

The MCP works in OpenCode, but it has one structural limit: we can't control when the agent decides to call the tools. A memory system is only as good as what it gets to learn from, and with MCP alone, capture depends on the model's mood.

The plugin adds what MCP can't:

  • Context injection - your profile arrives on session start, automatically
  • Automatic capture - conversation turns are stored whether or not the agent thinks to do it
  • Compaction integration - memory survives context compaction instead of dying in it

Use both if you want. The plugin is the floor; MCP is the power tools.


OpenCode finally remembers. Two commands, and your agent stack shares one brain.

Install it: bunx opencode-supermemory@latest install - or read the docs.

  1. An update to supermemoryWe've discontinued the supermemory company brain and Nova. Everyone who was charged has been refunded, our MCP and plugins continue to run, and we're going all in on the memory engine.
  2. Scaling Conversations: How Adapta Grew Usage Without Losing ContextAdapta added Supermemory as a persistent memory layer so every conversation keeps its context — letting the team scale usage without losing the thread.
  3. How Chatarmin Ditched RAG and Went Memory-Only with SupermemoryChatarmin replaced a heavy RAG pipeline with Supermemory's memory layer — cutting average AI response time from 40s to 12s and token usage by 40–50%.
  4. SMFS: making agentic retrieval 55% cheaper AND more accurateWe launched SMFS.ai (Supermemory Filesystem) a few weeks ago, with a simple bet: We can redesign the filesystem specifically for agents, with special files, structures, and commands that it can use for it's tasks. Today, SMFS is used by hundreds of companies to power their agents.
  5. Introducing Dynamic Dreaming: supermemory now connects the dots, for you.Dreaming is magical. TLDR: We're launching Dynamic Dreaming in supermemory today, which automatically works if you're using supermemory in any way - API, OpenClaw, Hermes agent, etc.
  6. Dear reader, we just made supermemory insanely cheap... the Context CloudWhen I first started building supermemory, I had one goal: To build the best memory system for AI. I would talk to customers, and find out that memory was not the only thing they needed - They were all setting up 7-8 different vendors at the same time.
  7. Introducing @supermemory/tools v2.0.0Today we're releasing v2.0.0. This release unifies the API across all agents sdk integrations from AI SDK to Mastra, makes conversation identity a first-class concept, and ships with memory saving on by default.
  8. Solving the Precision-Recall Tradeoff: Search Result AggregationWhen you're building memory for AI, search is your foundational layer. The way search generally works is straightforward: the user defines a query, and then sets a limit (top-K) on how many search results they want returned. Usually, this is set to 10 or 20.
  9. Stateful Coding Agents with Memory: Build Long-Running Agents (2026)We built a plugin for Claude Code and OpenCode that gives your coding agent persistent memory. It remembers your preferences, learns your codebase, and never loses context mid-conversation. The result is an agent you can run for months without starting over.
  10. OpenClaw Memory Problems: Why It Forgets and How to Fix It (2026)TLDR: Today, we are releasing a new version of our openclaw plugin - https://github.com/supermemoryai/openclaw-supermemory. This post is going to be a bit technical, so bear with me (or bookmark for later!) In this post, I will talk about what we do about OpenClaw memory, and how we fix it.
  11. Clawd / Molt bot's memory SUCKS. We gave it supermemory.I'm the founder of supermemory. Clawd/Molt bot is blowing up right now, with many, many use cases. I set it up, too, and have been using it through telegram. TLDR: just go to https://supermemory.ai/docs/integrations/clawdbot to set up supermemory for your clawd bot.
  12. Catch up with our UNFORGETTABLE Launch WeekOver the last year, one belief has guided almost everything we’ve built at Supermemory AI becomes meaningfully useful only when it remembers. Memory shouldn’t be something developers rebuild from scratch. It shouldn’t be fragile, expensive, or trapped inside a single tool.
  13. Empowering the Next Generation of Founders: Supermemory Startup ProgramIf there’s one thing we’ve learned while building Supermemory, it’s that most startups don’t fail because they didn't build features; they fail when infrastructure slows them down, or they built too slow.
  14. Building code-chunk: AST Aware Code ChunkingAt Supermemory, we're building context engineering infrastructure for AI. A huge part of that is dealing with code: ingesting repos, understanding structure, and making it searchable. The problem is that most code chunking solutions are terrible. We built code-chunk to fix this.
  15. Supermemory raises $3 million with the best memory engine for LLMsToday, I am excited to announce our first funding round to accelerate our mission of building an interoperable, scalable and reliable memory for LLMs and agents. Memory is one of the hardest challenges in AI right now.
  16. Mem0 vs Supermemory: Why Scira SwitchedScira AI moved its production memory layer from Mem0 to Supermemory. This is what failed, what improved, and how the team evaluated the two systems.
  17. Never Record Again: How Montra Uses Supermemory to Rethink Video CreationCampbell Baron, the founder of Montra, has been making videos since he was twelve. By thirteen, he was already doing brand work. Today, he’s betting on a very different future for creators: a world where recording is the exception, and most videos are generated from scratch.
  18. Unified Memory That Works Where You Work: Your Second Brain With SupermemoryHi everyone, I’m Dhravya, the founder of Supermemory. I want to start with a little story behind why this product means so much to me. You can also skip straight to what it is and how it works below.
  19. Supermemory just got faster on PlanetScaleWhat is Supermemory? Supermemory completes the missing part of the LLM puzzle: memory. Just as memory is crucial for human intelligence, it's essential for truly intelligent AI systems.
  20. Faster, smarter, reliable infinite chat: Supermemory IS context engineering.People are obsessed with prompts and prompt engineering. Sure, what you say is important, but what the model knows when you say it is the difference between a stateless text generator and an intelligent AI system. In short, context is the most crucial component.
  21. We solved AI API interoperabilityOne API to rule them all, One spec to find them, One library to bring them all and in the TypeScript, bind them. When we were building the the Infinite Chat API, initially, we only supported the OpenAI format. This was fine, until a lot of our customers started asking, asking for more.
  22. The Wow Factor of Memory - How Flow Used Supermemory To Build Smarter, Stickier ProductsOverview: Flow is a note-taking app built around a bold vision: to create a more personal, context-aware writing experience powered by AI. At the heart of this mission is memory.
  23. The UX and technicalities of awesome MCPsLast month, we launched the Supermemory MCP, mostly to test our own infrastructure and get some initial traction. It blew up. To my absolute surprise, the initial launch itself got half a million impressions (!!!). Then, we launched and got #2 on ProductHunt too.
  24. Architecting a memory engine inspired by the human brainLanguage is at the heart of intelligence, but what truly powers meaningful interaction is memory — the ability to accumulate, recall, and contextualize information over time. Large Language Models (LLMs) have mastered language, but memory remains their Achilles’ heel.