-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
188 lines (188 loc) · 5.73 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
188 lines (188 loc) · 5.73 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"id": "native-memory-citations",
"activation": {
"onStartup": true
},
"name": "Native Memory Citations",
"description": "Cited, access-bounded local-memory retrieval for OpenClaw: access boundary, redaction, citations, and opt-in enhanced memory sidecars.",
"configSchema": {
"type": "object",
"properties": {
"workspace": {
"type": "string",
"description": "Absolute path to the OpenClaw workspace. Defaults to $OPENCLAW_WORKSPACE or ~/.openclaw/workspace."
},
"allowedRoots": {
"type": "array",
"items": {
"type": "string"
},
"description": "Workspace-relative memory roots to search. Overrides the built-in default set."
},
"sharedMode": {
"type": "boolean",
"description": "When true, exclude the private MEMORY.md from the default root set."
},
"maxFileBytes": {
"type": "number",
"description": "Per-file size cap in bytes. Files larger than this are skipped. Default 1048576."
},
"mode": {
"anyOf": [
{
"type": "string",
"const": "bounded"
},
{
"type": "string",
"const": "enhanced"
}
],
"description": "Operating mode. bounded is default and preserves 2026.6.x behavior; enhanced enables explicitly configured pillars."
},
"dreaming": {
"type": "object",
"properties": {
"notify": {
"type": "boolean",
"description": "In enhanced mode, warn when host memory-core dreaming is off. Default true."
}
},
"additionalProperties": false
},
"graph": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable the local zero-LLM graph sidecar tools. Default false."
},
"edgeTypes": {
"type": "array",
"items": {
"anyOf": [
{
"type": "string",
"const": "works_at"
},
{
"type": "string",
"const": "invested_in"
},
{
"type": "string",
"const": "founded"
},
{
"type": "string",
"const": "advises"
},
{
"type": "string",
"const": "attended"
},
{
"type": "string",
"const": "mentions"
}
]
},
"description": "Typed graph edges to extract."
},
"maxDepth": {
"type": "number",
"description": "Maximum traversal depth for native_memory_graph. Default 3."
}
},
"additionalProperties": false
},
"recall": {
"type": "object",
"properties": {
"semantic": {
"type": "boolean",
"description": "Enhanced mode placeholder for host semantic recall fusion. Default false."
},
"rerank": {
"type": "boolean",
"description": "Enhanced mode placeholder for reranking fused candidates. Default false."
},
"snapshotFirst": {
"type": "boolean",
"description": "Enhanced mode placeholder for tier-0 snapshot recall. Default false."
},
"intentClassifier": {
"type": "boolean",
"description": "Enhanced mode placeholder for intent classification. Default false."
}
},
"additionalProperties": false
},
"injection": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enhanced mode placeholder for snapshot prompt injection. Default false."
},
"tokenCap": {
"type": "number",
"description": "Maximum injected snapshot budget. Default 1300."
}
},
"additionalProperties": false
},
"observations": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enhanced mode placeholder for future structured observation tagging. Default false."
},
"model": {
"type": "string",
"description": "Optional host model profile for future observation extraction. When omitted, use the host configured summarization or fast model."
},
"extraction": {
"type": "boolean",
"description": "Reserved for the future structured-extraction release; raw observation persistence is disabled."
},
"maxBytes": {
"type": "number",
"description": "Maximum retained observations.jsonl size in bytes. Default 1048576."
}
},
"additionalProperties": false
},
"wikiBridge": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable optional memory-wiki bridge when present. Default false."
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"version": "2026.6.18",
"contracts": {
"tools": [
"native_memory_search",
"native_memory_fetch",
"native_memory_answer",
"native_memory_graph",
"native_memory_extract"
]
},
"toolMetadata": {
"native_memory_graph": {
"optional": true
},
"native_memory_extract": {
"optional": true
}
}
}