-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
52 lines (52 loc) · 1.29 KB
/
openclaw.plugin.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"id": "openclaw-memory-docs",
"name": "OpenClaw Memory (Docs)",
"version": "0.2.1",
"description": "Documentation-focused memory: explicit capture + searchable store.",
"configSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"default": true
},
"storePath": {
"type": "string",
"description": "JSONL file path for docs memory",
"default": "~/.openclaw/workspace/memory/docs-memory.jsonl"
},
"dims": {
"type": "number",
"default": 256,
"minimum": 32,
"maximum": 2048
},
"redactSecrets": {
"type": "boolean",
"default": true
},
"maxItems": {
"type": "number",
"default": 5000,
"minimum": 100,
"maximum": 100000
},
"defaultTags": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"docs"
]
},
"exportPath": {
"type": "string",
"description": "Default directory for export/import (one markdown file per memory item)",
"default": "~/.openclaw/workspace/memory/docs-export"
}
}
}
}