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
Point the plugin at your self-hosted `foxmemory-store` instance:
28
+
29
+
```json
30
+
{
31
+
"baseUrl": "http://your-foxmemory-host:8082",
32
+
"userId": "your-user-id",
33
+
"autoCapture": true,
34
+
"autoRecall": true
35
+
}
36
+
```
37
+
38
+
### Mem0 platform (cloud)
39
+
40
+
Use Mem0's managed cloud platform instead:
41
+
42
+
```json
43
+
{
44
+
"mode": "platform",
45
+
"apiKey": "${MEM0_API_KEY}",
46
+
"userId": "your-user-id"
47
+
}
48
+
```
49
+
50
+
`${MEM0_API_KEY}` will be resolved from the environment variable of that name if set.
51
+
52
+
### Mem0 open-source (self-hosted SDK)
53
+
54
+
Run Mem0 OSS directly without `foxmemory-store`:
55
+
56
+
```json
57
+
{
58
+
"mode": "open-source",
59
+
"userId": "your-user-id",
60
+
"oss": {
61
+
"vectorStore": {
62
+
"provider": "qdrant",
63
+
"config": { "host": "localhost", "port": 6333 }
64
+
}
65
+
}
66
+
}
67
+
```
68
+
69
+
---
70
+
9
71
## What it does
10
72
11
73
The plugin registers five tools with OpenClaw that the resident AI (or any agent) can call:
@@ -20,8 +82,8 @@ The plugin registers five tools with OpenClaw that the resident AI (or any agent
20
82
21
83
Two automatic behaviors wrap each agent turn:
22
84
23
-
-**Auto-recall** — before a turn, retrieves relevant memories from both session and long-term scopes and injects them into the agent's context so Kite "remembers"
24
-
-**Auto-capture** — after a turn, extracts and stores key facts from the conversation so Kite "learns"
85
+
-**Auto-recall** — before a turn, retrieves relevant memories from both session and long-term scopes and injects them into the agent's context so your foxlight fox "remembers"
86
+
-**Auto-capture** — after a turn, extracts and stores key facts from the conversation so your foxlight fox "learns"
25
87
26
88
---
27
89
@@ -61,9 +123,9 @@ If `baseUrl` is not set, the plugin falls back to the upstream Mem0 SDK (platfor
61
123
62
124
---
63
125
64
-
## Configuration
126
+
## Configuration reference
65
127
66
-
Configure via OpenClaw's plugin settings UI or directly in your OpenClaw config.
0 commit comments