@remnic/plugin-openclaw 1.0.32 → 1.0.34

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.
@@ -1,7 +1,6 @@
1
1
  import {
2
2
  expandTildePath
3
- } from "./chunk-OEI7GLV2.js";
4
- import "./chunk-I6B2W2IY.js";
3
+ } from "./chunk-TDRJVMUP.js";
5
4
  import "./chunk-MLKGABMK.js";
6
5
  export {
7
6
  expandTildePath
@@ -3,9 +3,8 @@ import {
3
3
  listConnectorStates,
4
4
  readConnectorState,
5
5
  writeConnectorState
6
- } from "./chunk-37NKFWSO.js";
7
- import "./chunk-OEI7GLV2.js";
8
- import "./chunk-I6B2W2IY.js";
6
+ } from "./chunk-VRGUUHBV.js";
7
+ import "./chunk-TDRJVMUP.js";
9
8
  import "./chunk-MLKGABMK.js";
10
9
  export {
11
10
  _connectorStatePathForTest,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-remnic",
3
3
  "name": "Remnic OpenClaw Plugin",
4
- "version": "1.0.32",
4
+ "version": "1.0.34",
5
5
  "kind": "memory",
6
6
  "description": "Local semantic memory for OpenClaw with bundled Remnic core runtime. Requires plugins.slots.memory set to this plugin id for hooks to fire.",
7
7
  "setup": {
@@ -70,34 +70,6 @@
70
70
  "beforeReset": true
71
71
  },
72
72
  "contracts": {
73
- "commands": [
74
- "remnic"
75
- ],
76
- "hooks": [
77
- "before_prompt_build",
78
- "before_agent_start",
79
- "agent_end",
80
- "before_compaction",
81
- "after_compaction",
82
- "before_reset",
83
- "session_start",
84
- "session_end",
85
- "before_tool_call",
86
- "after_tool_call",
87
- "llm_output",
88
- "subagent_spawning",
89
- "subagent_ended",
90
- "commands.list"
91
- ],
92
- "memoryCapabilities": [
93
- "openclaw-remnic"
94
- ],
95
- "memoryPromptSections": [
96
- "engram-memory"
97
- ],
98
- "services": [
99
- "openclaw-remnic"
100
- ],
101
73
  "tools": [
102
74
  "compounding_promote_candidate",
103
75
  "compounding_weekly_synthesize",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/plugin-openclaw",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "description": "OpenClaw adapter for Remnic memory with bundled @remnic/core runtime",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -26,8 +26,8 @@
26
26
  "pluginApi": ">=2026.4.8"
27
27
  },
28
28
  "build": {
29
- "openclawVersion": "2026.5.2",
30
- "pluginSdkVersion": "2026.5.2"
29
+ "openclawVersion": "2026.5.6",
30
+ "pluginSdkVersion": "2026.5.6"
31
31
  },
32
32
  "install": {
33
33
  "minHostVersion": ">=2026.4.8"
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "dependencies": {
65
65
  "openai": "^6.0.0",
66
- "@remnic/core": "^1.1.9"
66
+ "@remnic/core": "^1.1.11"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "openclaw": ">=2026.4.8"
@@ -1,17 +0,0 @@
1
- import {
2
- resolveHomeDir
3
- } from "./chunk-I6B2W2IY.js";
4
-
5
- // ../remnic-core/src/utils/path.ts
6
- import path from "path";
7
- function expandTildePath(p) {
8
- if (p === "~") return resolveHomeDir();
9
- if (p.startsWith("~/") || p.startsWith("~\\")) {
10
- return path.join(resolveHomeDir(), p.slice(2));
11
- }
12
- return p;
13
- }
14
-
15
- export {
16
- expandTildePath
17
- };