neuralmemory 1.12.0 → 1.13.0
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/index.js +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -130,7 +130,7 @@ const plugin = {
|
|
|
130
130
|
id: "neuralmemory",
|
|
131
131
|
name: "NeuralMemory",
|
|
132
132
|
description: "Brain-inspired persistent memory for AI agents — neurons, synapses, and fibers",
|
|
133
|
-
version: "1.
|
|
133
|
+
version: "1.13.0",
|
|
134
134
|
kind: "memory",
|
|
135
135
|
register(api) {
|
|
136
136
|
const cfg = resolveConfig(api.pluginConfig);
|
package/openclaw.plugin.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"kind": "memory",
|
|
4
4
|
"name": "NeuralMemory",
|
|
5
5
|
"description": "Brain-inspired persistent memory for AI agents — neurons, synapses, and fibers. REQUIRED: set plugins.slots.memory = \"neuralmemory\" in openclaw.json to disable the default memory-core plugin and activate NeuralMemory as the exclusive memory provider.",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.13.0",
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"jsonSchema": {
|
|
9
9
|
"type": "object",
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -180,7 +180,7 @@ const plugin: OpenClawPluginDefinition = {
|
|
|
180
180
|
name: "NeuralMemory",
|
|
181
181
|
description:
|
|
182
182
|
"Brain-inspired persistent memory for AI agents — neurons, synapses, and fibers",
|
|
183
|
-
version: "1.
|
|
183
|
+
version: "1.13.0",
|
|
184
184
|
kind: "memory",
|
|
185
185
|
|
|
186
186
|
register(api: OpenClawPluginApi): void {
|