hippo-memory 1.13.2 → 1.13.3
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.
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +28 -24
- package/dist/cli.js.map +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +44 -38
- package/dist/mcp/server.js.map +1 -1
- package/dist/src/cli.js +28 -24
- package/dist/src/cli.js.map +1 -1
- package/dist/src/mcp/server.js +44 -38
- package/dist/src/mcp/server.js.map +1 -1
- package/extensions/openclaw-plugin/openclaw.plugin.json +1 -1
- package/extensions/openclaw-plugin/package.json +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAwBH,OAAO,EASL,WAAW,EAGZ,MAAM,aAAa,CAAC;AAiGrB,OAAO,KAAK,GAAG,MAAM,UAAU,CAAC;AAkChC,kFAAkF;AAClF,wBAAgB,8BAA8B,IAAI,IAAI,CAErD;
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAwBH,OAAO,EASL,WAAW,EAGZ,MAAM,aAAa,CAAC;AAiGrB,OAAO,KAAK,GAAG,MAAM,UAAU,CAAC;AAkChC,kFAAkF;AAClF,wBAAgB,8BAA8B,IAAI,IAAI,CAErD;AA4nED;;;GAGG;AACH,oHAAoH;AACpH,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CA2C/D;AAy6CD,oHAAoH;AACpH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,KAAK,CAAC;IAAE,KAAK,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,OAAO,CAAA;CAAE,CAAC,EACtF,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE,MAAkB,GAC1B,IAAI,CA6BN"}
|
package/dist/cli.js
CHANGED
|
@@ -1340,6 +1340,31 @@ async function cmdRecall(hippoRoot, query, flags) {
|
|
|
1340
1340
|
console.log(`Planning fallacy hint (class: ${cmdPlanningFallacyHint.classTag}): ${cmdPlanningFallacyHint.baserateSummary} [detected: ${safePhrase}]`);
|
|
1341
1341
|
console.log();
|
|
1342
1342
|
}
|
|
1343
|
+
// v1.13.3 / C5 follow-up — Cutoff line ABOVE the result list (was a
|
|
1344
|
+
// "WYSIATI:" line BELOW the result list in v1.12.13-v1.13.2). Dogfood
|
|
1345
|
+
// proof at docs/dogfood/2026-05-27-track-j-warnings.md: a fresh sub-agent
|
|
1346
|
+
// reading the v1.13.2 bottom-placed line ignored it entirely and
|
|
1347
|
+
// summarised the visible memories as if the dropped pool didn't exist
|
|
1348
|
+
// (the exact WYSIATI failure mode C5 is supposed to flag). Top placement
|
|
1349
|
+
// + plain English ("Cutoff:" not "WYSIATI:") closes the read gap.
|
|
1350
|
+
if (showWhy) {
|
|
1351
|
+
const s = cmdSuppressionSummary;
|
|
1352
|
+
const clauses = [];
|
|
1353
|
+
if (s.droppedByBudget > 0)
|
|
1354
|
+
clauses.push(`${s.droppedByBudget} dropped to fit limit`);
|
|
1355
|
+
if (s.droppedPreRank > 0)
|
|
1356
|
+
clauses.push(`${s.droppedPreRank} filtered pre-rank`);
|
|
1357
|
+
if (s.summarySubstitutionsAdded > 0)
|
|
1358
|
+
clauses.push(`${s.summarySubstitutionsAdded} summary substitutions added`);
|
|
1359
|
+
if (s.freshTailAdded > 0)
|
|
1360
|
+
clauses.push(`${s.freshTailAdded} fresh-tail added`);
|
|
1361
|
+
if (s.suppressedByInterference > 0)
|
|
1362
|
+
clauses.push(`${s.suppressedByInterference} suppressed by interference`);
|
|
1363
|
+
if (clauses.length > 0) {
|
|
1364
|
+
console.log(`Cutoff: showing ${results.length} of ${s.totalCandidates} candidates; ${clauses.join('; ')}.`);
|
|
1365
|
+
console.log();
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1343
1368
|
console.log(`Found ${results.length} memories (${totalTokens} tokens) for: "${query}"\n`);
|
|
1344
1369
|
for (const r of results) {
|
|
1345
1370
|
const e = r.entry;
|
|
@@ -1374,30 +1399,9 @@ async function cmdRecall(hippoRoot, query, flags) {
|
|
|
1374
1399
|
console.log(e.content);
|
|
1375
1400
|
console.log();
|
|
1376
1401
|
}
|
|
1377
|
-
// v1.12.13 / C5
|
|
1378
|
-
//
|
|
1379
|
-
//
|
|
1380
|
-
// keep the line tight. The calling agent uses this to spot when the
|
|
1381
|
-
// shown set is a small slice of a much larger candidate pool (Kahneman
|
|
1382
|
-
// "What You See Is All There Is" failure mode).
|
|
1383
|
-
if (showWhy) {
|
|
1384
|
-
const s = cmdSuppressionSummary;
|
|
1385
|
-
const clauses = [];
|
|
1386
|
-
if (s.droppedByBudget > 0)
|
|
1387
|
-
clauses.push(`${s.droppedByBudget} dropped by limit`);
|
|
1388
|
-
if (s.droppedPreRank > 0)
|
|
1389
|
-
clauses.push(`${s.droppedPreRank} pre-rank filtered`);
|
|
1390
|
-
if (s.summarySubstitutionsAdded > 0)
|
|
1391
|
-
clauses.push(`${s.summarySubstitutionsAdded} summary substitutions added`);
|
|
1392
|
-
if (s.freshTailAdded > 0)
|
|
1393
|
-
clauses.push(`${s.freshTailAdded} fresh-tail added`);
|
|
1394
|
-
if (s.suppressedByInterference > 0)
|
|
1395
|
-
clauses.push(`${s.suppressedByInterference} suppressed by interference`);
|
|
1396
|
-
if (clauses.length > 0) {
|
|
1397
|
-
console.log(`WYSIATI: showing ${results.length}/${s.totalCandidates}; ${clauses.join('; ')}.`);
|
|
1398
|
-
console.log();
|
|
1399
|
-
}
|
|
1400
|
-
}
|
|
1402
|
+
// v1.12.13 / C5 -> v1.13.3 follow-up: the WYSIATI bottom block was
|
|
1403
|
+
// moved above the result list (see comment near the Cutoff render
|
|
1404
|
+
// above). Function ends here.
|
|
1401
1405
|
}
|
|
1402
1406
|
async function cmdExplain(hippoRoot, query, flags) {
|
|
1403
1407
|
requireInit(hippoRoot);
|