@cognee/cognee-openclaw 2026.6.11 → 2026.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "baseUrl": {
18
18
  "type": "string",
19
- "description": "Cognee API base URL (default: http://localhost:8000). Also settable via COGNEE_BASE_URL env var."
19
+ "description": "Cognee API base URL (default: http://localhost:8011). Also settable via COGNEE_BASE_URL env var."
20
20
  },
21
21
  "apiKey": {
22
22
  "type": "string",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "datasetName": {
34
34
  "type": "string",
35
- "description": "Cognee dataset name for single-scope mode (default: openclaw). Ignored when multi-scope is enabled."
35
+ "description": "Cognee dataset name for single-scope mode (default: agent_sessions). Also settable via COGNEE_PLUGIN_DATASET env var. Ignored when multi-scope is enabled."
36
36
  },
37
37
  "companyDataset": {
38
38
  "type": "string",
@@ -112,9 +112,14 @@
112
112
  "type": "boolean",
113
113
  "description": "Persist session Q&A pairs into the knowledge graph after agent ends (default: true)"
114
114
  },
115
+ "captureSession": {
116
+ "type": "boolean",
117
+ "description": "Capture each tool call as a trace entry and each prompt/answer pair as a QA entry in Cognee's session cache (default: true; requires enableSessions)"
118
+ },
115
119
  "searchType": {
116
120
  "type": "string",
117
121
  "enum": [
122
+ "HYBRID_COMPLETION",
118
123
  "GRAPH_COMPLETION",
119
124
  "GRAPH_COMPLETION_COT",
120
125
  "GRAPH_COMPLETION_CONTEXT_EXTENSION",
@@ -130,7 +135,7 @@
130
135
  "CODING_RULES",
131
136
  "FEELING_LUCKY"
132
137
  ],
133
- "description": "Cognee search mode (default: FEELING_LUCKYauto-selects best strategy per query)"
138
+ "description": "Cognee search mode (default: HYBRID_COMPLETIONcombined vector + graph retrieval)"
134
139
  },
135
140
  "deleteMode": {
136
141
  "type": "string",
@@ -173,6 +178,22 @@
173
178
  "type": "boolean",
174
179
  "description": "Run memify (graph enrichment) after cognify completes (default: false)"
175
180
  },
181
+ "recallTimeoutMs": {
182
+ "type": "number",
183
+ "description": "Per recall HTTP call timeout on the prompt path, no retries (default: 2500)"
184
+ },
185
+ "recallBudgetMs": {
186
+ "type": "number",
187
+ "description": "Overall wall-clock budget for the recall step per prompt; when exceeded the turn proceeds without memories (default: 4000)"
188
+ },
189
+ "recallBreakerThreshold": {
190
+ "type": "number",
191
+ "description": "Consecutive recall failures (network/timeout/5xx) before recall is temporarily skipped (default: 5)"
192
+ },
193
+ "recallBreakerCooldownMs": {
194
+ "type": "number",
195
+ "description": "How long recall is skipped after the breaker opens (default: 120000)"
196
+ },
176
197
  "requestTimeoutMs": {
177
198
  "type": "number",
178
199
  "description": "HTTP timeout in milliseconds for Cognee requests (default: 60000)"
@@ -190,7 +211,7 @@
190
211
  "uiHints": {
191
212
  "baseUrl": {
192
213
  "label": "Base URL",
193
- "placeholder": "http://localhost:8000"
214
+ "placeholder": "http://localhost:8011"
194
215
  },
195
216
  "apiKey": {
196
217
  "label": "API Key",
@@ -208,7 +229,7 @@
208
229
  },
209
230
  "datasetName": {
210
231
  "label": "Dataset Name (single-scope)",
211
- "placeholder": "openclaw"
232
+ "placeholder": "agent_sessions"
212
233
  },
213
234
  "companyDataset": {
214
235
  "label": "Company Dataset",
@@ -243,9 +264,12 @@
243
264
  "persistSessionsAfterEnd": {
244
265
  "label": "Persist Sessions"
245
266
  },
267
+ "captureSession": {
268
+ "label": "Capture Session"
269
+ },
246
270
  "searchType": {
247
271
  "label": "Search Type",
248
- "placeholder": "FEELING_LUCKY"
272
+ "placeholder": "HYBRID_COMPLETION"
249
273
  },
250
274
  "deleteMode": {
251
275
  "label": "Delete Mode",
@@ -286,6 +310,22 @@
286
310
  "ingestionTimeoutMs": {
287
311
  "label": "Ingestion Timeout (ms)",
288
312
  "placeholder": "300000"
313
+ },
314
+ "recallTimeoutMs": {
315
+ "label": "Recall Timeout (ms)",
316
+ "placeholder": "2500"
317
+ },
318
+ "recallBudgetMs": {
319
+ "label": "Recall Budget (ms)",
320
+ "placeholder": "4000"
321
+ },
322
+ "recallBreakerThreshold": {
323
+ "label": "Recall Breaker Threshold",
324
+ "placeholder": "5"
325
+ },
326
+ "recallBreakerCooldownMs": {
327
+ "label": "Recall Breaker Cooldown (ms)",
328
+ "placeholder": "120000"
289
329
  }
290
330
  }
291
331
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cognee/cognee-openclaw",
3
- "version": "2026.6.11",
3
+ "version": "2026.7.9",
4
4
  "type": "module",
5
5
  "description": "OpenClaw Cognee-backed memory plugin with auto-recall/capture",
6
6
  "main": "dist/index.js",
@@ -34,17 +34,18 @@
34
34
  ]
35
35
  },
36
36
  "moduleNameMapper": {
37
+ "^openclaw/plugin-sdk/sandbox$": "<rootDir>/__mocks__/openclaw-sandbox.cjs",
37
38
  "^(\\.\\.?/.*)\\.js$": "$1"
38
39
  }
39
40
  },
40
41
  "peerDependencies": {
41
- "openclaw": ">=2026.4.1"
42
+ "openclaw": ">=2026.6.5"
42
43
  },
43
44
  "devDependencies": {
44
45
  "@types/jest": "^30.0.0",
45
46
  "@types/node": "^20.0.0",
46
47
  "jest": "^30.2.0",
47
- "openclaw": "2026.4.2",
48
+ "openclaw": "^2026.6.10",
48
49
  "ts-jest": "^29.4.6",
49
50
  "typescript": "^5.3.0"
50
51
  },