← Reddit

I built persistent memory + knowledge vaults for Claude -- looking for people to try them

Reddit · Ok_Nefariousness2893 · April 29, 2026
A developer has created two MCP plugins called LoreConvo and LoreDocs to enhance working with Claude. LoreConvo saves session context automatically and retrieves relevant information in subsequent sessions, while LoreDocs organizes documents into searchable knowledge vaults, with both tools operating locally on SQLite databases. The developer is seeking beta testers to identify bugs and usability issues before wider release.

Detailed Analysis

A solo developer with over two decades of data engineering experience has published two Model Context Protocol (MCP) plugins — LoreConvo and LoreDocs — to the Anthropic marketplace and PyPI, targeting one of the most persistent friction points in working with large language models: the stateless nature of individual sessions. LoreConvo addresses conversational continuity by automatically capturing session context — decisions made, open questions, artifacts produced — and surfacing relevant pieces at the start of subsequent sessions. LoreDocs complements it by offering structured, named "vaults" for long-lived documents such as architecture decisions and product specifications, queryable via full-text search across 36 exposed MCP tools. Both tools are architecturally local-first, storing data in SQLite databases on the user's machine with no cloud dependency, and both carry free tiers, with LoreDocs capping the free plan at three vaults. The developer is now soliciting external testers through Reddit's r/ClaudeAI community to surface install friction and behavioral edge cases before broader release.

The timing of this release is notable. Anthropic launched persistent memory for Claude Managed Agents in public beta on April 23, 2026 — just days before this community post — signaling that session continuity has become a recognized infrastructure-level problem rather than a niche developer complaint. Anthropic's official implementation stores memories on the filesystem, exposes them through the API and console, and includes version rollback and workspace-scoped sharing, with early enterprise adopters like Netflix and Rakuten reporting significant reductions in workflow errors and latency. LoreConvo and LoreDocs occupy a different tier of this emerging ecosystem: privacy-preserving, locally hosted, and accessible to individual developers without enterprise contracts or API-level integrations. The contrast illustrates how official platform features and community-built tooling are evolving in parallel rather than in sequence, each serving meaningfully different user profiles.

The technical choices embedded in both plugins reflect deliberate tradeoffs worth examining. LoreConvo's reliance on FTS5 full-text search — which the developer openly acknowledges will miss semantically related terms not explicitly indexed — is a pragmatic architectural decision that prioritizes speed, determinism, and zero external dependencies over the recall completeness that vector embeddings would provide. The developer has flagged hybrid vector search as a roadmap item, a path already explored in community projects like the Obsidian-style self-evolving vault systems and MindStudio's four-layer memory framework that segment agent instructions, brand context, and project memory into distinct retrieval layers. The structuring of LoreDocs into named vaults echoes these layered approaches and aligns with Anthropic's own internal research using progress-tracking files like CHANGELOG.md as portable long-term memory in multi-day agentic workflows.

Security considerations form an important subtext to the entire persistent memory space. Cisco researchers identified a class of memory-poisoning vulnerabilities in Claude Code where injected instructions embedded in persistent memories could override intended agent behavior — a flaw Anthropic addressed in Claude Code v2.1.50 by removing user memories from system prompts. Local-first architectures like LoreConvo and LoreDocs sidestep some threat surfaces by keeping data off remote infrastructure, but they introduce their own considerations: any tool that intercepts and re-injects session context into a Claude conversation creates a vector through which compromised stored data could influence model behavior. The developer has not publicly addressed this threat model, which represents a meaningful gap for security-conscious testers to probe.

Taken broadly, LoreConvo and LoreDocs represent a class of community-layer infrastructure that consistently emerges around foundation models as their adoption deepens — tooling that fills gaps between what the platform provides natively and what daily production users actually need. The persistent memory problem has now attracted responses at every layer of the stack: official Anthropic APIs, enterprise integrations, community frameworks like MindStudio's agent memory system, individual YouTubers building self-improving vault agents, and now PyPI-distributed MCP plugins from independent engineers. That the same architectural problem is being solved simultaneously at so many levels reflects both the genuine severity of the statelessness limitation and the maturity of the Claude developer ecosystem, which has grown capable enough to produce production-adjacent tooling without institutional backing.

Read original article →