home / skills / openclaw / skills / infinite-memory-v2
This skill provides high-precision memory with long-term recall to retrieve and store contextual data across extensive conversations.
npx playbooks add skill openclaw/skills --skill infinite-memory-v2Review the files below or copy the command above to add this skill to your agents.
---
name: infinite-memory
version: 1.0.0
description: High-precision memory with 100% recall accuracy for long contexts.
emoji: 🦞
metadata:
clawdbot:
requires:
bins:
- python
- curl
files:
- scripts/recall.py
- scripts/ingest.py
- engine/memory_engine_parallel_lms.py
- references/AUTO_INTEGRATION.md
- memory_service.py
- requirements.txt
---
# Infinite Memory 🦞
High-precision RAG engine for deep context retrieval (Phase 16 Architecture).
## Tools
### recall_facts
- **Cmd:** `python scripts/recall.py "{{query}}"`
- **Goal:** Search for facts in the historical database.
### memorize_data
- **Cmd:** `python scripts/ingest.py "{{filename}}" "{{text}}"`
- **Goal:** Store new data into the long-term memory.
This skill provides a high-precision long-term memory engine with 100% recall accuracy for very large contexts. It archives and retrieves historical facts and versions from a centralized archive of skills, enabling precise retrieval for deep-context workflows. The system is optimized for deterministic recall and durable storage of ingestible items.
The skill exposes two core operations: recall_facts to query the archived database for exact facts and memorize_data to ingest and persist new items into long-term memory. Queries run against a versioned archive so results include historical context and provenance. Ingested items are indexed and stored to support reliable retrieval across arbitrarily long conversations.
What operations are available?
Two operations: recall_facts for queries and memorize_data for ingestion.
How is 100% recall accuracy ensured?
Data is indexed and versioned in a deterministic archive so exact stored items are returned for matching queries.