-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
95 lines (95 loc) · 3.26 KB
/
openclaw.plugin.json
File metadata and controls
95 lines (95 loc) · 3.26 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": "memory-powermem",
"kind": "memory",
"uiHints": {
"mode": {
"label": "Backend mode",
"placeholder": "cli",
"help": "Use \"cli\" to run pmem locally (recommended for individuals; no server). Use \"http\" for powermem-server (teams / enterprise). Default: cli"
},
"baseUrl": {
"label": "PowerMem API URL",
"placeholder": "http://localhost:8000",
"help": "Required when mode is http. Base URL of PowerMem HTTP API (no /api/v1). Start server with: powermem-server --port 8000"
},
"apiKey": {
"label": "API Key",
"sensitive": true,
"placeholder": "",
"help": "Optional; required if PowerMem server has authentication enabled (http mode only)"
},
"envFile": {
"label": "Env file path",
"placeholder": "",
"advanced": true,
"help": "CLI mode: path to PowerMem .env (default ~/.openclaw/powermem/powermem.env if you use install.sh -y). Optional; pmem can discover .env if omitted"
},
"pmemPath": {
"label": "pmem binary path",
"placeholder": "pmem",
"advanced": true,
"help": "CLI mode: path to pmem (or powermem) executable. Default: pmem"
},
"userId": {
"label": "User ID",
"placeholder": "openclaw-user",
"advanced": true,
"help": "PowerMem user_id for memory isolation (optional)"
},
"agentId": {
"label": "Agent ID",
"placeholder": "openclaw-agent",
"advanced": true,
"help": "PowerMem agent_id for memory isolation (optional)"
},
"recallLimit": {
"label": "Recall limit",
"placeholder": "5",
"advanced": true,
"help": "Max memories to return in recall / inject in auto-recall (1–100)"
},
"recallScoreThreshold": {
"label": "Recall score threshold",
"placeholder": "0",
"advanced": true,
"help": "Min score (0–1); memories below are filtered out"
},
"autoCapture": {
"label": "Auto-Capture",
"help": "Automatically store important information from conversations"
},
"autoRecall": {
"label": "Auto-Recall",
"help": "Automatically inject relevant memories into context"
},
"inferOnAdd": {
"label": "Infer on Add",
"help": "Use PowerMem intelligent extraction when adding (infer=true)"
},
"useOpenClawModel": {
"label": "Use OpenClaw LLM for PowerMem",
"advanced": true,
"help": "When true (default), inject LLM/embedding from OpenClaw agents.defaults.model into pmem (overrides powermem .env for those keys). SQLite defaults under OpenClaw state dir when no .env."
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"mode": { "type": "string", "enum": ["http", "cli"] },
"baseUrl": { "type": "string" },
"apiKey": { "type": "string" },
"envFile": { "type": "string" },
"pmemPath": { "type": "string" },
"userId": { "type": "string" },
"agentId": { "type": "string" },
"recallLimit": { "type": "number" },
"recallScoreThreshold": { "type": "number" },
"autoCapture": { "type": "boolean" },
"autoRecall": { "type": "boolean" },
"inferOnAdd": { "type": "boolean" },
"useOpenClawModel": { "type": "boolean" }
},
"required": []
}
}