@digitalforgestudios/openclaw-sulcus 1.0.1 → 1.0.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.
- package/index.ts +2 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -296,7 +296,8 @@ const sulcusMemoryPlugin = {
|
|
|
296
296
|
const label = node.pointer_summary ?? node.label ?? "";
|
|
297
297
|
const heat = node.current_heat ?? node.heat ?? 0;
|
|
298
298
|
const type = node.memory_type ?? "unknown";
|
|
299
|
-
|
|
299
|
+
const id = node.id ?? "";
|
|
300
|
+
return `${i + 1}. [${type}] (heat: ${heat.toFixed(2)}) [id: ${id}] ${label.slice(0, 500)}`;
|
|
300
301
|
});
|
|
301
302
|
|
|
302
303
|
return {
|
package/package.json
CHANGED