Install
openclaw skills install memory-cacheHigh-performance temporary storage system using Redis. Supports namespaced keys (mema:*), TTL management, and JSON serialization for session context and API...
openclaw skills install memory-cacheStandardized Redis-backed caching system for OpenClaw agents.
python3 must be available on the host.REDIS_URL environment variable (e.g., redis://localhost:6379/0).env.example.txt to .env..env.requirements.txt.python3 $WORKSPACE/skills/memory-cache/scripts/cache_manager.py set mema:cache:<name> <value> [--ttl 3600]python3 $WORKSPACE/skills/memory-cache/scripts/cache_manager.py get mema:cache:<name>python3 $WORKSPACE/skills/memory-cache/scripts/cache_manager.py scan [pattern]python3 $WORKSPACE/skills/memory-cache/scripts/cache_manager.py pingStrictly enforce the mema: prefix:
mema:context:* – Session state.mema:cache:* – Volatile data.mema:state:* – Persistent state.