@gamaze/hicortex 0.14.1 → 0.14.2

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.
@@ -1271,7 +1271,10 @@ function fixDaemonVersionPin() {
1271
1271
  function formatResults(results) {
1272
1272
  if (results.length === 0)
1273
1273
  return "No memories found.";
1274
+ // The id makes every recall surface feed the rest of the toolset: cite-on-use
1275
+ // (id + date), hicortex_get lazy-load of truncated content, hicortex_graph
1276
+ // entry points, and hicortex_update/delete self-correction (#192).
1274
1277
  return results
1275
- .map((r) => `[${r.memory_type}] (score: ${r.score.toFixed(3)}, strength: ${r.effective_strength.toFixed(3)}) ${r.content.slice(0, 500)}`)
1278
+ .map((r) => `[${r.id}] [${r.memory_type}] (${(r.created_at ?? "").slice(0, 10)}, score: ${r.score.toFixed(3)}, strength: ${r.effective_strength.toFixed(3)}) ${r.content.slice(0, 500)}`)
1276
1279
  .join("\n\n");
1277
1280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamaze/hicortex",
3
- "version": "0.14.1",
3
+ "version": "0.14.2",
4
4
  "description": "Self-learning memory for AI agents \u2014 experience captured automatically, distilled into lessons overnight, shared across your whole fleet. Works with Hermes, OpenClaw, Claude Code, and Pi.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {