AIAny
AI Agent2026
Icon for item

memsearch

Provides cross-platform semantic memory for AI coding agents by turning human-editable Markdown logs into a rebuildable Milvus “shadow” index and syncing memories across plugins (Claude Code, OpenClaw, OpenCode, Codex). Supports progressive retrieval, hybrid dense+BM25+RRF search, smart deduplication, live sync, and local ONNX embeddings.

Introduction

Most agent projects struggle with two linked problems: memories are either locked in a single agent provider or stored in opaque blobs that are hard to audit and edit. memsearch takes the opposite approach: Markdown is the source of truth and a vector index is a rebuildable cache. That design makes agent history portable, human-readable, and easy to version-control — which materially lowers friction when you want conversational context to follow users across different agent frontends.

What Sets It Apart
  • Markdown-first memory: conversations and summaries are written to daily .md files; the system re-chunks and hashes content so unchanged text isn’t re-embedded. This makes history auditable and editable by humans (so what: easier debugging, compliance, and manual corrections).
  • Hybrid, progressive retrieval: a three-layer recall pipeline (search → expand → transcript) combines dense vectors, BM25 sparse retrieval, and RRF reranking to prioritize relevance while allowing cheap, fast fallbacks (so what: better recall for short facts and long transcripts without excessive compute).
  • Shadow-index with Milvus: Milvus is used as a rebuildable “shadow” index — the markdown repo remains authoritative and the vector DB is always derivable (so what: you can reset or migrate indexes without losing source data).
  • Plugins + cross-agent sync: first-class plugins for Claude Code, OpenClaw, OpenCode, and Codex let conversations captured in one agent become searchable context in others, with zero extra setup for end users.
Who It's For and Tradeoffs

Great fit if you build or operate chat/assistant agents and want persistent, inspectable memory that travels across platforms — especially small teams or developers who prefer local-first options (default ONNX embedding runs locally; model ~558 MB). Look elsewhere if you need a turnkey, multi-tenant enterprise memory service with guaranteed SLA and large-scale managed indexing out of the box; memsearch favors portability, developer control, and a rebuildable architecture over opaque managed abstractions.

Where It Fits

Positioned between simple file-based note-taking and heavyweight managed memory services: use memsearch when you want an auditable, developer-friendly memory layer for RAG/agent workflows, with optional upgrade paths to Zilliz Cloud or self-hosted Milvus for production scaling.

How It Works (brief)

Plugins append summarized turns to Markdown; a file watcher re-chunks changed files, computes SHA-256 hashes, and only re-embeds changed chunks. Embeddings default to local ONNX (bge-m3) but can be switched to OpenAI/Ollama. Upserts go to Milvus (Milvus Lite by default), and retrieval uses hybrid ranking across sparse and dense signals with progressive expansion into full transcripts.

Information

  • Websitegithub.com
  • AuthorsZilliz
  • Published date2026/02/09

Categories

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).