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 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.12.0",
133
+ version: "1.13.0",
134
134
  kind: "memory",
135
135
  register(api) {
136
136
  const cfg = resolveConfig(api.pluginConfig);
@@ -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.12.0",
6
+ "version": "1.13.0",
7
7
  "configSchema": {
8
8
  "jsonSchema": {
9
9
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neuralmemory",
3
- "version": "1.12.0",
3
+ "version": "1.13.0",
4
4
  "description": "NeuralMemory plugin for OpenClaw — brain-inspired persistent memory for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
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.12.0",
183
+ version: "1.13.0",
184
184
  kind: "memory",
185
185
 
186
186
  register(api: OpenClawPluginApi): void {