V3 Memory Unification

Unify disparate memory systems into an AgentDB with HNSW vector search.

1|Updated Jan 6, 2026
One-click install
npx skills add https://github.com/Kling0012/MCRPG --skill v3-memory-unification
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: V3 Memory Unification
Source: https://github.com/Kling0012/MCRPG/tree/main/.claude/skills/v3-memory-unification
Command: npx skills add https://github.com/Kling0012/MCRPG --skill v3-memory-unification

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The skill consolidates disparate memory systems into a single AgentDB backend with fast HNSW vector search, enabling unified querying and backward compatibility.

Core Features & Use Cases

  • Unified Memory Backend with HNSW indexing for fast semantic search.
  • Cross-agent memory sharing and real-time synchronization.
  • Data migration from SQLiteBackend and MarkdownBackend into AgentDB.
  • SONA learning pattern storage and retrieval.

Quick Start

  • Task("Memory architecture", "Design AgentDB unification strategy", "v3-memory-specialist")
  • Task("AgentDB setup", "Configure HNSW indexing and vector search", "v3-memory-specialist")
  • Task("Memory migration", "Migrate SQLite/Markdown to AgentDB", "v3-memory-specialist")

Frequently Asked Questions about V3 Memory Unification

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I unify memory systems across multiple agents using vector search?

Unifying memory consolidates disparate memory systems into a single AgentDB backend powered by HNSW vector search, enabling semantic querying and cross-agent memory sharing. This Skill implements UnifiedMemoryService to migrate SQLiteBackend and MarkdownBackend data into one indexed system supporting real-time synchronization.

Can I migrate existing SQLite and Markdown memory backends to AgentDB?

Yes. This Skill includes a DataMigrator component that handles cross-backend migration from SQLiteBackend and MarkdownBackend into AgentDB with embedding generation for semantic search, while maintaining backward compatibility with existing memory managers in multi-agent systems.

What's the fastest way to implement semantic search across agent memories?

HNSW indexing provides ultra-fast semantic search by storing embeddings in an optimized vector structure. This Skill configures HNSW indexing within AgentDB to enable low-latency queries across unified memory, supporting both real-time agent access and SONA learning pattern retrieval.

Do I need to rewrite my memory architecture to use AgentDB unification?

No. This Skill unifies memory without requiring architecture rewrites—it migrates data from existing SQLiteBackend and MarkdownBackend systems into AgentDB while preserving backward compatibility, so heterogeneous memory managers continue working during and after transition.

How does embedding generation support memory unification across different storage formats?

Embedding generation converts memory entries from disparate formats into semantic vectors indexed by HNSW. This unified representation enables consistent querying regardless of original storage format—SQL, Markdown, or custom—while enabling cross-agent memory sharing and learning pattern storage.