A standardized Redis-backed caching system for managing AI agent state, session context, and high-speed data retrieval.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install memory-cache
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install memory-cache using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Memory Cache is a high-performance temporary storage system designed specifically for AI agents within the Openclaw Skills ecosystem. By utilizing Redis, it provides a robust framework for saving agent states, caching expensive API results, and facilitating data sharing between multiple sub-agents. The skill emphasizes organization through namespaced keys and efficient memory management via Time-To-Live (TTL) configurations.
Implementing this skill allows developers to maintain session continuity and improve the responsiveness of their AI workflows. It acts as a centralized memory layer, ensuring that critical context is preserved across different execution cycles while preventing data collisions through strict naming conventions.
To integrate this into your workflow, ensure you have python3 and a running Redis instance. This is a core component for developers looking to expand their library of Openclaw Skills.
# Install required dependencies
pip install -r requirements.txt
# Configure environment variables
cp env.example.txt .env
# Define REDIS_URL in your .env file
The skill organizes data within Redis using a strict prefix-based taxonomy to ensure clarity and prevent overwrites:
| Key Prefix | Type | Description |
|---|---|---|
mema:context:* |
Session | Stores active session state and conversation history. |
mema:cache:* |
Volatile | Used for temporary API results and short-term data. |
mema:state:* |
Persistent | Holds long-term agent state across multiple runs. |
Loading
A standardized memory system that combines a SQLite metadata index for document organization with a Redis-powered short-term context buffer.

A specialized skill designed to eliminate AI stylistic tells and produce high-density, professional technical documentation.

A security-focused skill for sanitizing external content and neutralizing prompt injection attacks in AI agent workflows.

Automatically sort cluttered directories into organized subfolders by file extension or creation date.

A specialized agent skill for generating robust, visually appealing Mermaid.js diagrams using safe syntax and professional layouts.

An automated command-line tool for running Postman collections to enable seamless API testing and reporting.








































