What problem does it solve? Fragmented memory systems (SQLite, Markdown, distributed stores) create inconsistent query interfaces and slow retrieval. This Skill unifies 6+ legacy memory backends into a single AgentDB service with HNSW vector indexing for semantic search. ## Core Features & Use Cases - Unified Memory Service: Implements a single IMemoryBackend interface routing queries to AgentDB or the HNSW index based on query type. - HNSW Vector Search: Configures approximate nearest-neighbor indexing with tunable parameters (efConstruction, M) targeting 150x-12,500x search speedups. - Data Migration: Provides phased migration patterns for moving SQLite records and Markdown files into AgentDB with generated embeddings. - Use Case: A multi-agent system storing learning patterns across separate SQLite and Markdown backends can migrate both into AgentDB, then run semantic queries across all agents' memories through one interface. ## Quick Start Ask the agent to design an AgentDB unification strategy and migrate the existing SQLite and Markdown memory backends into a unified HNSW-indexed store.