EveryDev.ai
Subscribe
Home
Tools

3,569+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. OpenCode Memory
    OpenCode Memory icon

    OpenCode Memory

    Agent Memory

    A persistent memory plugin for AI coding agents that enables long-term context retention across sessions using a local vector database (Turso/libSQL).

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source plugin available via npm. No cost to use, modify, or distribute.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent MemoryAI Coding AssistantsVector Databases

    Alternatives

    MiMoCodeLetta CodeContextPool
    Developer
    Zhafron Adani KautsarZhafron Adani Kautsar is an independent open-source develope…

    Listed Aug 2026

    About OpenCode Memory

    OpenCode Memory is an open-source plugin for the OpenCode AI coding platform that gives coding agents a persistent, searchable memory store backed by a local Turso/libSQL vector database. It runs entirely on-device by default, requiring no external vector database service, and supports both automatic background memory capture and manual memory management via a built-in tool API. The project has accumulated over 1,300 GitHub stars and 135 forks since its creation in early 2026.

    What It Is

    OpenCode Memory (published as opencode-mem on npm) is a plugin that attaches a long-term memory layer to OpenCode coding sessions. When a session goes idle, a background AI request extracts technically meaningful context—architecture decisions, bug patterns, user preferences—and stores it as vector embeddings in a local libSQL database. In later sessions, relevant memories are automatically injected into context, so the agent "remembers" prior work without the user needing to re-explain it.

    How Memory Is Captured and Retrieved

    The plugin operates in two modes that can run simultaneously:

    • Auto-capture: After conversation turns, a background AI request summarizes technical work and saves it as a memory entry. Requires an AI provider that supports structured/tool-call output (e.g., Anthropic Claude, OpenAI GPT-4o-mini).
    • Manual tool calls: The memory tool supports add, search, list, profile, forget, list-shards, migrate, export, and import operations on demand.

    Memories are scoped per project (keyed by git remote URL or project root path) or can be queried across all projects with scope: "all-projects". A separate User Profile accumulates cross-project preferences and habits, updated automatically on a configurable interval.

    Embedding and Vector Search Architecture

    Vector search is powered by libSQL's native F32_BLOB column type and vector_top_k approximate nearest-neighbor index (DiskANN). No separate vector database or custom SQLite build is required. Embeddings are generated locally by default using @huggingface/transformers with ONNX runtime, with the default model being Xenova/nomic-embed-text-v1 (768 dimensions, multilingual, 8192-token context). Over 12 local embedding models are supported, and a remote OpenAI-compatible embedding endpoint can be substituted via embeddingApiUrl and embeddingApiKey configuration keys.

    Supported local models include:

    • Xenova/nomic-embed-text-v1 — default, multilingual, 768 dims
    • Xenova/jina-embeddings-v2-base-en — English-only, 768 dims
    • Xenova/all-MiniLM-L6-v2 — very fast, 384 dims
    • Xenova/all-mpnet-base-v2 — high quality, 768 dims

    Web UI and Management

    A full-featured web interface is served locally at http://127.0.0.1:4747 and provides a memory–prompt timeline, capture inspection, and user profile management. When the server is exposed beyond loopback (e.g., 0.0.0.0), HTTP Basic Auth or a Bearer token (webServerApiToken) can be required for all /api/* requests. The UI supports re-embed migrations, shard browsing, and export/import workflows.

    Multi-Provider AI Support

    Auto-capture and user profile learning work with any provider listed by opencode providers list, including Anthropic, OpenAI, GitHub Copilot, and others. The recommended configuration uses opencodeProvider + opencodeModel so OpenCode owns authentication and token refresh. A manual fallback (memoryProvider) supports direct API calls to OpenAI Chat Completions, OpenAI Responses API, Anthropic Messages API, and MiniMax endpoints.

    Update: v2.24.3

    The latest release is v2.24.3, published on 2026-08-08. Recent development has focused on migrating from legacy SQLite shards to native Turso/libSQL vector format (with automatic migration on first startup, lock files to prevent concurrent migration, and backup preservation), fixing Intel Mac (darwin/x64) ONNX runtime teardown crashes by pinning onnxruntime-node@1.20.1, and adding the opencode-mem/tags public subpath export for third-party plugin interoperability. The project is actively maintained with CI testing across Linux, Windows, macOS 15, and macOS 26 on both Intel and Apple Silicon.

    OpenCode Memory - 1

    Community Discussions

    Be the first to start a conversation about OpenCode Memory

    Share your experience with OpenCode Memory, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source plugin available via npm. No cost to use, modify, or distribute.

    • Persistent local vector memory store
    • Auto-capture background memory extraction
    • 12+ local embedding models
    • Web UI for memory management
    • Multi-provider AI support

    Capabilities

    Key Features

    • Persistent memory across AI coding sessions
    • Local Turso/libSQL vector database with native vector search
    • Auto-capture: background AI extraction of technical context
    • Manual memory tool (add, search, list, forget, migrate, export, import)
    • User profile learning across projects
    • Full-featured web UI at localhost:4747
    • 12+ local embedding models via HuggingFace Transformers/ONNX
    • Remote OpenAI-compatible embedding endpoint support
    • Smart deduplication
    • Multi-provider AI support (OpenAI, Anthropic, GitHub Copilot, MiniMax)
    • Project-scoped and cross-project memory search
    • Export/import for cross-machine backup and restore
    • Shard migration with dry-run and backup preservation
    • HTTP Basic Auth and Bearer token for web UI security
    • Workspace marker file for multi-repo project memory sharing
    • Public subpath exports for third-party plugin interoperability

    Integrations

    OpenCode
    Anthropic Claude
    OpenAI
    GitHub Copilot
    MiniMax
    LiteLLM
    HuggingFace Transformers
    Turso/libSQL
    Bun
    npm
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate OpenCode Memory and help others make informed decisions.

    Developer

    Zhafron Adani Kautsar

    Zhafron Adani Kautsar is an independent open-source developer building developer tooling for AI coding agents. The opencode-mem project provides persistent memory infrastructure for the OpenCode platform, combining local vector database technology with multi-provider AI support. The project is actively maintained and welcomes community contributions.

    Read more about Zhafron Adani Kautsar
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    MiMoCode icon

    MiMoCode

    An open-source, terminal-native AI coding agent with cross-session persistent memory, subagent orchestration, and self-improvement capabilities.

    Letta Code icon

    Letta Code

    Letta Code is an AI coding assistant powered by stateful agents with persistent memory, enabling long-context, multi-session coding help directly in your development environment.

    ContextPool icon

    ContextPool

    ContextPool gives AI coding agents persistent memory across sessions by extracting and storing engineering insights from past sessions via MCP.

    Browse all tools

    Related Topics

    Agent Memory

    Memory layers, frameworks, and services that enable AI agents to store, recall, and manage information across sessions. These tools provide persistent, semantic, and contextual memory for agents, supporting personalization, long-term context retention, graph-based relationships, and hybrid RAG + memory workflows.

    124 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    751 tools

    Vector Databases

    Specialized databases optimized for storing and retrieving vector embeddings that power semantic search, recommendation systems, and other AI applications with similarity matching.

    35 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions