Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Manage and retrieve long-term memories with LanceDB using semantic vector search, category filtering, and detailed metadata storage.
Manage and retrieve long-term memories with LanceDB using semantic vector search, category filtering, and detailed metadata storage.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
lancedb_memory = LanceMemoryDB() def add_memory(content: str, category: str = "general", tags: List[str] = None, importance: int = 5, metadata: Dict[str, Any] = None) -> int: """Add a memory to the LanceDB store.""" return lancedb_memory.add_memory(content, category, tags, importance, metadata) def search_memories(query: str, category: str = None, limit: int = 10) -> List[Dict]: """Search memories using semantic similarity.""" return lancedb_memory.search_memories(query, category, limit) def get_memories_by_category(category: str, limit: int = 50) -> List[Dict]: """Get memories by category.""" return lancedb_memory.get_memories_by_category(category, limit) def get_memory_stats() -> Dict[str, Any]: """Get memory storage statistics.""" return lancedb_memory.get_memory_stats()
if name == "main": # Test the database print("Testing LanceDB memory integration...") # Add a test memory test_id = add_memory( content="This is a test memory for LanceDB integration", category="test", tags=["lancedb", "integration", "test"], importance=8 ) print(f"Added memory with ID: {test_id}") # Search for memories results = search_memories("test memory") print(f"Search results: {len(results)} memories found") # Get stats stats = get_memory_stats() print(f"Memory stats: {stats}")
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.