@wazionapps/openclaw-memory-nexo-brain 1.1.0 → 2.6.9

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/README.md CHANGED
@@ -93,4 +93,4 @@ fastembed vectors (BAAI/bge-small-en-v1.5, CPU)
93
93
 
94
94
  ## License
95
95
 
96
- MIT
96
+ AGPL-3.0 -- see [LICENSE](../LICENSE)
@@ -23,7 +23,7 @@ export class McpBridge {
23
23
  async start() {
24
24
  if (this.process)
25
25
  return;
26
- const serverPath = resolve(this.config.nexoHome, "src", "server.py");
26
+ const serverPath = resolve(this.config.nexoHome, "server.py");
27
27
  const nodeProcess = globalThis.process;
28
28
  this.process = spawn(this.config.pythonPath, [serverPath], {
29
29
  env: {
@@ -51,7 +51,7 @@ export class McpBridge {
51
51
  await this.send("initialize", {
52
52
  protocolVersion: "2024-11-05",
53
53
  capabilities: {},
54
- clientInfo: { name: "openclaw-memory-nexo-brain", version: "1.0.0" },
54
+ clientInfo: { name: "openclaw-memory-nexo-brain", version: "2.6.9" },
55
55
  });
56
56
  await this.send("notifications/initialized", {});
57
57
  this.initialized = true;
package/package.json CHANGED
@@ -1,14 +1,23 @@
1
1
  {
2
2
  "name": "@wazionapps/openclaw-memory-nexo-brain",
3
- "version": "1.1.0",
4
- "description": "OpenClaw native memory plugin powered by NEXO Brain Atkinson-Shiffrin cognitive memory, semantic RAG, trust scoring, and metacognitive guard.",
3
+ "version": "2.6.9",
4
+ "description": "OpenClaw native memory plugin powered by NEXO Brain \u2014 Atkinson-Shiffrin cognitive memory, semantic RAG, trust scoring, and metacognitive guard.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
+ "exports": "./dist/index.js",
7
8
  "types": "dist/index.d.ts",
8
9
  "scripts": {
9
10
  "build": "tsc",
11
+ "test": "node --test tests/*.test.mjs",
12
+ "prepack": "npm run build",
10
13
  "prepublishOnly": "npm run build"
11
14
  },
15
+ "files": [
16
+ "dist/",
17
+ "openclaw.plugin.json",
18
+ "README.md",
19
+ "package.json"
20
+ ],
12
21
  "dependencies": {
13
22
  "@sinclair/typebox": "^0.34.0"
14
23
  },
@@ -39,8 +48,8 @@
39
48
  "ai-memory",
40
49
  "vector-search"
41
50
  ],
42
- "author": "WAzion <hello@wazion.com>",
43
- "license": "MIT",
51
+ "author": "NEXO Brain <info@nexo-brain.com>",
52
+ "license": "AGPL-3.0",
44
53
  "repository": {
45
54
  "type": "git",
46
55
  "url": "git+https://github.com/wazionapps/nexo.git",