You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openclaw.plugin.json
+29-2Lines changed: 29 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,9 @@
4
4
"description": "Enhanced LanceDB-backed long-term memory with hybrid retrieval, multi-scope isolation, long-context chunking, and management CLI",
5
5
"version": "1.1.0-beta.10",
6
6
"kind": "memory",
7
-
"skills": ["./skills"],
7
+
"skills": [
8
+
"./skills"
9
+
],
8
10
"configSchema": {
9
11
"type": "object",
10
12
"additionalProperties": false,
@@ -165,6 +167,18 @@
165
167
"default": "full",
166
168
"description": "Auto-recall depth mode. 'full': inject with configured per-item budget. 'summary': L0 abstracts only (compact). 'adaptive': analyze query intent to auto-select category and depth. 'off': disable auto-recall injection."
167
169
},
170
+
"autoRecallExcludeAgents": {
171
+
"type": "array",
172
+
"items": { "type": "string" },
173
+
"default": [],
174
+
"description": "Blacklist mode for auto-recall injection. Agents in this list are skipped. Agent resolution falls back to 'main' when no explicit agentId is available. If autoRecallIncludeAgents is also set, include wins."
175
+
},
176
+
"autoRecallIncludeAgents": {
177
+
"type": "array",
178
+
"items": { "type": "string" },
179
+
"default": [],
180
+
"description": "Whitelist mode for auto-recall injection. Only agents in this list receive auto-recall. Agent resolution falls back to 'main' when no explicit agentId is available. If both include and exclude are set, autoRecallIncludeAgents takes precedence (whitelist wins)."
181
+
},
168
182
"captureAssistant": {
169
183
"type": "boolean"
170
184
},
@@ -854,7 +868,10 @@
854
868
}
855
869
}
856
870
}
857
-
}
871
+
},
872
+
"required": [
873
+
"embedding"
874
+
]
858
875
},
859
876
"uiHints": {
860
877
"embedding.apiKey": {
@@ -1376,6 +1393,16 @@
1376
1393
"label": "Max Extractions Per Hour",
1377
1394
"help": "Rate limit for auto-capture extractions. Prevents excessive LLM calls during rapid-fire sessions.",
1378
1395
"advanced": true
1396
+
},
1397
+
"autoRecallExcludeAgents": {
1398
+
"label": "Auto-Recall Excluded Agents",
1399
+
"help": "Blacklist mode. Agents here are skipped for auto-recall. If agentId is unavailable it falls back to 'main'. If autoRecallIncludeAgents is set, include wins.",
1400
+
"advanced": true
1401
+
},
1402
+
"autoRecallIncludeAgents": {
1403
+
"label": "Auto-Recall Included Agents",
1404
+
"help": "Whitelist mode. Only these agents receive auto-recall. If agentId is unavailable it falls back to 'main'. Includes take precedence over excludes.",
Copy file name to clipboardExpand all lines: package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@
25
25
"author": "win4r",
26
26
"license": "MIT",
27
27
"scripts": {
28
-
"test": "node scripts/verify-ci-test-manifest.mjs && npm run test:cli-smoke && npm run test:core-regression && npm run test:storage-and-schema && npm run test:llm-clients-and-auth && npm run test:packaging-and-workflow",
0 commit comments