You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: OpenClaw integration support with per-skill memory isolation
- Add comprehensive OpenClaw documentation and workflow guides
- Add Linux one-line install script (curl | bash)
- Add example GitHub PR reviewer skill
- Add llms.txt for AI agent documentation
- Update README with OpenClaw quick start (English & Chinese)
- Add per-skill memory isolation using context parameter
This release focuses on making aimemo the go-to memory solution for
OpenClaw skills, with zero-dependency installation and complete isolation.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
# 2. Initialize memory for your project (run from project root)
@@ -56,6 +60,10 @@ claude mcp add-json aimemo-memory '{"command":"aimemo","args":["serve"]}'
56
60
57
61
Restart Claude Code. On the next session, Claude will automatically load project context.
58
62
63
+
### Quick Start for OpenClaw
64
+
65
+
If you're using OpenClaw skills, see the [OpenClaw Integration](#-openclaw-integration) section below for per-skill memory isolation.
66
+
59
67
## 🔧 How It Works
60
68
61
69
`aimemo serve` runs as a stdio MCP server; Claude Code manages the process lifecycle, so there is nothing to keep alive yourself. When Claude starts a session it calls `memory_context` to load relevant prior context; as it works it calls `memory_store` and `memory_link` to record decisions and relationships. You can call `aimemo search`, `aimemo list`, or `aimemo get` at any time to read or edit the same data from your terminal. Everything lives in a SQLite database inside `.aimemo/`, discovered by walking up from the current directory — the same way Git finds `.git/`.
@@ -157,6 +165,138 @@ This project uses aimemo for persistent memory across sessions.
157
165
- Do not store secrets, credentials, or PII.
158
166
```
159
167
168
+
## 🦞 OpenClaw Integration
169
+
170
+
aimemo solves OpenClaw's "remembers everything but understands none" problem with **per-skill memory isolation** and **zero infrastructure**.
171
+
172
+
### Why aimemo for OpenClaw?
173
+
174
+
**The Problem:**
175
+
- OpenClaw's native Markdown memory gets worse the more you use it
0 commit comments