-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
53 lines (53 loc) · 1.54 KB
/
openclaw.plugin.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"id": "clawmemory",
"name": "ClawMemory",
"description": "Local-first memory plugin (Markdown + SQLite) for OpenClaw",
"version": "0.2.0",
"kind": "memory",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"pythonBin": {
"type": "string",
"description": "Python executable used to run ClawMemory bridge",
"default": "python3"
},
"memoryRoot": {
"type": "string",
"description": "Memory root directory (resolved by openclaw resolvePath)",
"default": "memory"
},
"timeoutMs": {
"type": "number",
"description": "Timeout for bridge execution",
"default": 20000
},
"autoFlushMaxTurns": {
"type": "number",
"description": "Auto flush short-term session buffer after N turns",
"default": 24
},
"minConfidence": {
"type": "number",
"description": "Minimum confidence for session fact extraction",
"default": 0.7
},
"reminderDefaultSeconds": {
"type": "number",
"description": "Default due duration for reminder_set when omitted",
"default": 300
},
"vectorBackend": {
"type": "string",
"description": "Semantic backend: hashed (default) or chroma (local)",
"default": "hashed"
},
"embedModel": {
"type": "string",
"description": "Local sentence-transformers model used when vectorBackend=chroma",
"default": "all-MiniLM-L6-v2"
}
}
}
}