-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
44 lines (44 loc) · 1.64 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
44 lines (44 loc) · 1.64 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
{
"id": "@everme/openclaw",
"name": "EverMe Memory Plugin",
"description": "Real-time memory retrieval and persistence backed by the EverMe cloud (cold-start memory uploaded by evercli)",
"version": "0.6.1",
"kind": "context-engine",
"contextEngine": true,
"main": "./index.js",
"configSchema": {
"type": "object",
"properties": {
"apiBase": {
"type": "string",
"description": "EverMe API base URL. Defaults to env EVERME_API_BASE.",
"default": ""
},
"agentId": {
"type": "string",
"description": "EverMe agentId (agt_...). Defaults to env EVERME_AGENT_ID. Written by `evercli plugin install`.",
"default": ""
},
"agentToken": {
"type": "string",
"description": "EverMe agentToken (evt_...). Defaults to env EVERME_AGENT_TOKEN. NEVER log or echo.",
"default": ""
},
"topK": {
"type": "integer",
"description": "Maximum memory rows to retrieve per turn",
"default": 5
},
"flushEveryTurns": {
"type": "integer",
"description": "How many turns between extraction flushes. Defaults to 5; compact and dispose also flush. Set both flushEveryTurns and flushMaxBytes to 0 to disable per-turn uploads while retaining lifecycle flushes. EVERME_FLUSH_MODE=legacy restores every-turn extraction.",
"default": 5
},
"flushMaxBytes": {
"type": "integer",
"description": "Deprecated compatibility switch. Set both flushEveryTurns and flushMaxBytes to 0 to disable per-turn uploads; realtime writes do not buffer by byte size.",
"default": 65536
}
}
}
}