forked from mem9-ai/mem9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
95 lines (95 loc) · 2.8 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
95 lines (95 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"id": "mem9",
"name": "Mnemo Memory",
"description": "AI agent memory — server mode (mnemo-server). Hybrid vector + keyword search.",
"kind": "memory",
"configSchema": {
"type": "object",
"properties": {
"apiUrl": {
"type": "string",
"description": "mnemo-server URL (server mode)"
},
"apiKey": {
"type": "string",
"description": "mem9 API key (secret — do not share)"
},
"provisionToken": {
"type": "string",
"description": "One-time create-new token used locally to ensure API-key provisioning runs only once from an OpenClaw agent turn and can be reused on this machine before apiKey is configured explicitly"
},
"provisionQueryParams": {
"type": "object",
"description": "Optional utm_* params forwarded only by the first create-new provision request triggered by an OpenClaw agent turn after the initial restart",
"additionalProperties": {
"type": "string"
}
},
"defaultTimeoutMs": {
"type": "number",
"minimum": 1,
"description": "Default timeout in milliseconds for non-search mem9 API requests (default 8000)"
},
"searchTimeoutMs": {
"type": "number",
"minimum": 1,
"description": "Timeout in milliseconds for memory search and automatic recall search (default 15000)"
},
"debug": {
"type": "boolean",
"description": "When true, emit mem9 debug logs. Current coverage includes before_prompt_build recall diagnostics; future mem9 debug categories reuse the same switch"
},
"debugRecall": {
"type": "boolean",
"description": "Deprecated alias for debug. When true, enables mem9 debug logs including before_prompt_build recall diagnostics"
},
"tenantID": {
"type": "string",
"description": "Deprecated: use apiKey"
}
}
},
"uiHints": {
"apiUrl": {
"label": "Server URL",
"placeholder": "https://your-server.example.com"
},
"apiKey": {
"label": "API Key",
"placeholder": "key...",
"sensitive": true
},
"provisionToken": {
"label": "Provision Token",
"placeholder": "create-new only"
},
"defaultTimeoutMs": {
"label": "Default Timeout (ms)",
"placeholder": "8000"
},
"searchTimeoutMs": {
"label": "Search Timeout (ms)",
"placeholder": "15000"
},
"debug": {
"label": "Debug"
},
"debugRecall": {
"label": "Debug Recall (Deprecated)"
},
"tenantID": {
"label": "Tenant ID (legacy)",
"placeholder": "uuid...",
"sensitive": true
}
},
"contracts": {
"tools": [
"memory_store",
"memory_search",
"memory_get",
"memory_update",
"memory_delete"
]
}
}