forked from MemTensor/MemOS-Cloud-OpenClaw-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclawdbot.plugin.json
More file actions
169 lines (169 loc) · 3.88 KB
/
Copy pathclawdbot.plugin.json
File metadata and controls
169 lines (169 loc) · 3.88 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"id": "memos-cloud-openclaw-plugin",
"name": "MemOS Cloud OpenClaw Plugin",
"description": "MemOS Cloud recall + add memory via lifecycle hooks",
"version": "0.1.9",
"kind": "lifecycle",
"main": "./index.js",
"configSchema": {
"type": "object",
"properties": {
"baseUrl": {
"type": "string",
"description": "MemOS Cloud base URL"
},
"apiKey": {
"type": "string",
"description": "MemOS API Key (Token auth; supports ~/.openclaw/.env, ~/.moltbot/.env, ~/.clawdbot/.env; falls back to process env)"
},
"userId": {
"type": "string",
"description": "MemOS user_id (default: openclaw-user)",
"default": "openclaw-user"
},
"conversationId": {
"type": "string",
"description": "Override conversation_id"
},
"conversationIdPrefix": {
"type": "string",
"description": "conversation_id prefix"
},
"conversationIdSuffix": {
"type": "string",
"description": "conversation_id suffix"
},
"conversationSuffixMode": {
"type": "string",
"enum": [
"none",
"counter"
],
"default": "none"
},
"resetOnNew": {
"type": "boolean",
"default": true
},
"queryPrefix": {
"type": "string",
"description": "Prefix added to search queries"
},
"maxQueryChars": {
"type": "integer",
"description": "Max chars for search query"
},
"recallEnabled": {
"type": "boolean",
"default": true
},
"recallGlobal": {
"type": "boolean",
"default": true
},
"addEnabled": {
"type": "boolean",
"default": true
},
"captureStrategy": {
"type": "string",
"enum": [
"last_turn",
"full_session"
],
"default": "last_turn"
},
"maxMessageChars": {
"type": "integer",
"description": "Max chars per message when adding",
"default": 20000
},
"maxItemChars": {
"type": "integer",
"description": "Max chars per memory item when injecting prompt",
"default": 8000
},
"includeAssistant": {
"type": "boolean",
"default": true
},
"memoryLimitNumber": {
"type": "integer",
"default": 6
},
"preferenceLimitNumber": {
"type": "integer",
"default": 6
},
"includePreference": {
"type": "boolean",
"default": true
},
"includeToolMemory": {
"type": "boolean",
"default": false
},
"toolMemoryLimitNumber": {
"type": "integer",
"default": 6
},
"filter": {
"type": "object",
"description": "MemOS search filter"
},
"knowledgebaseIds": {
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"info": {
"type": "object",
"additionalProperties": true
},
"agentId": {
"type": "string"
},
"multiAgentMode": {
"type": "boolean",
"default": false
},
"appId": {
"type": "string"
},
"allowPublic": {
"type": "boolean",
"default": false
},
"allowKnowledgebaseIds": {
"type": "array",
"items": {
"type": "string"
}
},
"asyncMode": {
"type": "boolean",
"default": true
},
"timeoutMs": {
"type": "integer",
"default": 5000
},
"retries": {
"type": "integer",
"default": 1
},
"throttleMs": {
"type": "integer",
"default": 0
}
},
"additionalProperties": false
}
}