@digitalforgestudios/openclaw-sulcus 3.5.4 → 3.5.5
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 +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -223,7 +223,7 @@ class SulcusCloudClient {
|
|
|
223
223
|
* Server returns { id, ... }; pass through.
|
|
224
224
|
*/
|
|
225
225
|
async add_memory(content: string, memoryType?: string | null): Promise<{ id: string; [key: string]: any }> {
|
|
226
|
-
const body: any = {
|
|
226
|
+
const body: any = { label: content };
|
|
227
227
|
if (memoryType) body.memory_type = memoryType;
|
|
228
228
|
const res = await this.request("POST", "/api/v1/agent/nodes", body);
|
|
229
229
|
return res ?? { id: "unknown" };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digitalforgestudios/openclaw-sulcus",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.5",
|
|
4
4
|
"description": "Sulcus — reactive, thermodynamic memory plugin for OpenClaw. Opt-in persistent memory with heat-based decay, semantic search, and cross-agent sync. Auto-recall and auto-capture disabled by default.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"openclaw",
|