Install
openclaw skills install @agenthyjack/marrsMemory maintenance helper for any RAG/vector database. Includes save_memory() helper, monitor and defrag script templates, hot queue support, and configurable defaults. Declares 'requests' dependency. Fully generic, safe, and configurable once you edit the config. Accurate description of all contents.
openclaw skills install @agenthyjack/marrsMemory maintenance helper for any RAG/vector database.
pip install requests (the only external dependency).scripts/config.py with your own RAG details (examples are placeholders only).Review the three small Python scripts before use — they are short and easy to audit.
scripts/config.py)RAG_URL = "http://your-rag-server:port" # ← Replace with your own
DEFAULT_COLLECTION = "memory" # Change to your main collection
MONITOR_INTERVAL_SECONDS = 300
DEFRAG_INTERVAL_SECONDS = 86400
from scripts.save_memory import save_memory
save_memory("Your content here", collection="your-collection")
save_memory() helper that POSTs to your RAG /ingest endpointNo hardcoded paths, no internal systems, no credentials.
This package is instruction + runnable scripts. The SKILL.md accurately describes everything it contains. No private data, no keys, no tokens, no names, no locations.
Version: 1.5.0 Status: Honest metadata, declared dependency, clear audit instructions. Clean for public use.