@wazionapps/openclaw-memory-nexo-brain 1.0.1 → 1.0.3

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.d.ts CHANGED
@@ -7,5 +7,12 @@
7
7
  *
8
8
  * Architecture: TypeScript adapter → MCP Bridge (stdio) → Python NEXO server
9
9
  */
10
- declare const _default: import("openclaw/plugin-sdk/plugin-entry").PluginEntryOptions;
11
- export default _default;
10
+ type OpenClawPluginApi = any;
11
+ declare const plugin: {
12
+ id: string;
13
+ name: string;
14
+ description: string;
15
+ kind: "memory";
16
+ register(api: OpenClawPluginApi): void;
17
+ };
18
+ export default plugin;
package/dist/index.js CHANGED
@@ -7,12 +7,12 @@
7
7
  *
8
8
  * Architecture: TypeScript adapter → MCP Bridge (stdio) → Python NEXO server
9
9
  */
10
- import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
11
10
  import { McpBridge } from "./mcp-bridge.js";
12
11
  import { COGNITIVE_TOOLS } from "./tools.js";
13
12
  let bridge = null;
14
13
  let sessionId = null;
15
- export default definePluginEntry({
14
+ // Export plugin definition directly — definePluginEntry is a no-op passthrough
15
+ const plugin = {
16
16
  id: "memory-nexo-brain",
17
17
  name: "NEXO Brain",
18
18
  description: "Cognitive memory system — Atkinson-Shiffrin model, semantic RAG, trust scoring, and metacognitive guard.",
@@ -175,4 +175,5 @@ export default definePluginEntry({
175
175
  },
176
176
  });
177
177
  },
178
- });
178
+ };
179
+ export default plugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wazionapps/openclaw-memory-nexo-brain",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "OpenClaw native memory plugin powered by NEXO Brain — Atkinson-Shiffrin cognitive memory, semantic RAG, trust scoring, and metacognitive guard.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -16,9 +16,6 @@
16
16
  "@types/node": "^25.5.0",
17
17
  "typescript": "^5.7.0"
18
18
  },
19
- "peerDependencies": {
20
- "openclaw": ">=2026.3.0"
21
- },
22
19
  "openclaw": {
23
20
  "extensions": [
24
21
  "./dist/index.js"