Memory Core Skill
This skill provides the fundamental tools for the OpenClaw Adaptive Memory Core (OAMC). It allows the agent to retain experiences, recall context, reflect on patterns, and self-evolve.
🛠️ Tools
1. memory_remember
Purpose: Store a new memory or experience.
- •When to use: When the user tells you a fact, preference, or goal.
- •Effect: Writes to the daily log (
memory/YYYY-MM-DD.md) and updates the search index.
2. memory_recall
Purpose: Retrieve relevant context.
- •When to use: Before answering a question that relies on past interactions or user preferences.
- •Effect: Searches themes, semantics, and episodes to provide dense context.
3. memory_reflect
Purpose: Mine patterns and suggest evolution.
- •When to use: Periodically, or when you notice you are repeating mistakes.
- •Effect: Scans recent history for high-frequency patterns and suggests new rules.
4. memory_evolve
Purpose: Update your own operating rules.
- •When to use: When
memory_reflectprovides a valid suggestion to updateMETA.md. - •Effect: Writes a new Rule or SOP to
memory/META.md, permanently changing your behavior.
🔄 Workflow
- •Ingest: Use
memory_rememberto log important turns. - •Retrieve: Use
memory_recallto ground your responses. - •Evolve: If you detect a pattern, use
memory_reflectthenmemory_evolve.