@remnic/plugin-openclaw 9.3.585 → 9.3.587

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
@@ -37,9 +37,7 @@ __reExport(logger_exports, logger_star);
37
37
  import * as logger_star from "@remnic/core/logger";
38
38
 
39
39
  // ../../src/sdk-compat.ts
40
- var sdk_compat_exports = {};
41
- __reExport(sdk_compat_exports, sdk_compat_star);
42
- import * as sdk_compat_star from "@remnic/core/sdk-compat";
40
+ import { detectSdkCapabilities } from "@remnic/core/sdk-compat";
43
41
 
44
42
  // ../../src/index.ts
45
43
  import { Orchestrator, sanitizeSessionKeyForFilename, defaultWorkspaceDir } from "@remnic/core/orchestrator";
@@ -62,9 +60,7 @@ import { exportWorkBoardMarkdown, exportWorkBoardSnapshot, importWorkBoardSnapsh
62
60
  import { wrapWorkLayerContext } from "@remnic/core/work/boundary";
63
61
 
64
62
  // ../../src/profiling.ts
65
- var profiling_exports = {};
66
- __reExport(profiling_exports, profiling_star);
67
- import * as profiling_star from "@remnic/core/profiling";
63
+ import { formatProfileTraceAscii, ProfilingCollector } from "@remnic/core/profiling";
68
64
 
69
65
  // ../../src/tools.ts
70
66
  import { runMemoryGovernance } from "@remnic/core/maintenance/memory-governance";
@@ -2805,7 +2801,7 @@ Returns: Performance trace data with timing breakdown`,
2805
2801
  lines.push("No traces recorded yet. Trigger a recall or extraction to see timing data.");
2806
2802
  } else {
2807
2803
  for (const trace of traces) {
2808
- lines.push((0, profiling_exports.formatProfileTraceAscii)(trace));
2804
+ lines.push(formatProfileTraceAscii(trace));
2809
2805
  lines.push("");
2810
2806
  }
2811
2807
  }
@@ -2876,7 +2872,7 @@ Returns: Performance trace data with timing breakdown`,
2876
2872
  lines.push("No traces recorded yet. Trigger a recall or extraction to see timing data.");
2877
2873
  } else {
2878
2874
  for (const trace of traces) {
2879
- lines.push((0, profiling_exports.formatProfileTraceAscii)(trace));
2875
+ lines.push(formatProfileTraceAscii(trace));
2880
2876
  lines.push("");
2881
2877
  }
2882
2878
  }
@@ -2931,9 +2927,7 @@ import path3 from "path";
2931
2927
  import os from "os";
2932
2928
 
2933
2929
  // ../../src/opik-exporter.ts
2934
- var opik_exporter_exports = {};
2935
- __reExport(opik_exporter_exports, opik_exporter_star);
2936
- import * as opik_exporter_star from "@remnic/core/opik-exporter";
2930
+ import { createOpikExporter, OpikExporter } from "@remnic/core/opik-exporter";
2937
2931
 
2938
2932
  // ../../src/index.ts
2939
2933
  import { readEnvVar, resolveHomeDir } from "@remnic/core/runtime/env";
@@ -4823,7 +4817,7 @@ var pluginDefinition = {
4823
4817
  const serviceId = typeof registerThis?.id === "string" && registerThis.id.trim().length > 0 ? registerThis.id : REMNIC_OPENCLAW_PLUGIN_ID;
4824
4818
  const keys = buildServiceKeys(serviceId);
4825
4819
  (0, logger_exports.initLogger)(api.logger, false);
4826
- sdkCaps = (0, sdk_compat_exports.detectSdkCapabilities)(api);
4820
+ sdkCaps = detectSdkCapabilities(api);
4827
4821
  logger_exports.log.info(
4828
4822
  `SDK detection: version=${sdkCaps.sdkVersion}, beforePromptBuild=${sdkCaps.hasBeforePromptBuild}, memoryPromptSection=${sdkCaps.hasRegisterMemoryPromptSection}, memoryCapability=${sdkCaps.hasRegisterMemoryCapability}, typedHooks=${sdkCaps.hasTypedHooks}`
4829
4823
  );
@@ -7313,7 +7307,7 @@ Keep the reflection grounded in the evidence below.
7313
7307
  logger_exports.log.info("initializing engram memory system...");
7314
7308
  await orchestrator.initialize();
7315
7309
  if (!didCountStart) return;
7316
- activeOpikExporter = (0, opik_exporter_exports.createOpikExporter)({}, logger_exports.log);
7310
+ activeOpikExporter = createOpikExporter({}, logger_exports.log);
7317
7311
  if (activeOpikExporter) activeOpikExporter.subscribe();
7318
7312
  if (orchestrator.config.transcriptEnabled) {
7319
7313
  await orchestrator.transcript.cleanup(
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-remnic",
3
3
  "name": "Remnic OpenClaw Plugin",
4
- "version": "9.3.585",
4
+ "version": "9.3.587",
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": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/plugin-openclaw",
3
- "version": "9.3.585",
3
+ "version": "9.3.587",
4
4
  "description": "OpenClaw adapter for Remnic memory with bundled @remnic/core runtime",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -72,7 +72,7 @@
72
72
  "dependencies": {
73
73
  "@sinclair/typebox": "^0.34.0",
74
74
  "openai": "^6.0.0",
75
- "@remnic/core": "^9.3.585"
75
+ "@remnic/core": "^9.3.587"
76
76
  },
77
77
  "peerDependencies": {
78
78
  "openclaw": ">=2026.4.1 || 2026.4.7-1 || 2026.4.9-beta.1 || 2026.4.11-beta.1 || 2026.4.12-beta.1 || 2026.4.14-beta.1 || 2026.4.15-beta.1 || 2026.4.15-beta.2 || 2026.4.19-beta.1 || 2026.4.19-beta.2 || 2026.4.20-beta.1 || 2026.4.20-beta.2 || 2026.4.22-beta.1 || 2026.4.23-beta.1 || 2026.4.23-beta.2 || 2026.4.23-beta.3 || 2026.4.23-beta.4 || 2026.4.23-beta.5 || 2026.4.23-beta.6 || 2026.4.24-beta.1 || 2026.4.24-beta.2 || 2026.4.24-beta.3 || 2026.4.24-beta.4 || 2026.4.24-beta.5 || 2026.4.24-beta.6 || 2026.4.25-beta.1 || 2026.4.25-beta.2 || 2026.4.25-beta.3 || 2026.4.25-beta.4 || 2026.4.25-beta.5 || 2026.4.25-beta.6 || 2026.4.25-beta.7 || 2026.4.25-beta.8 || 2026.4.25-beta.9 || 2026.4.25-beta.10 || 2026.4.25-beta.11 || 2026.4.26-beta.1 || 2026.4.27-beta.1 || 2026.4.29-beta.1 || 2026.4.29-beta.2 || 2026.4.29-beta.3 || 2026.4.29-beta.4 || 2026.4.30-beta.1 || 2026.5.2-beta.1 || 2026.5.2-beta.2 || 2026.5.2-beta.3 || 2026.5.3-1 || 2026.5.3-beta.1 || 2026.5.3-beta.2 || 2026.5.3-beta.3 || 2026.5.3-beta.4 || 2026.5.4-beta.1 || 2026.5.4-beta.2 || 2026.5.4-beta.3 || 2026.5.5-beta.1 || 2026.5.5-beta.2 || 2026.5.6-beta.1 || 2026.5.7-beta.1 || 2026.5.9-beta.1 || 2026.5.10-beta.1 || 2026.5.10-beta.2 || 2026.5.10-beta.3 || 2026.5.10-beta.4 || 2026.5.10-beta.5 || 2026.5.10-beta.6 || 2026.5.12-beta.1 || 2026.5.12-beta.2 || 2026.5.12-beta.3 || 2026.5.12-beta.4 || 2026.5.12-beta.5 || 2026.5.12-beta.6 || 2026.5.12-beta.7 || 2026.5.12-beta.8 || 2026.5.14-beta.1 || 2026.5.14-beta.2 || 2026.5.16-beta.1 || 2026.5.16-beta.2 || 2026.5.16-beta.3 || 2026.5.16-beta.4 || 2026.5.16-beta.5 || 2026.5.16-beta.6 || 2026.5.16-beta.7 || 2026.5.18-beta.1 || 2026.5.19-alpha.1 || 2026.5.19-beta.1 || 2026.5.19-beta.2 || 2026.5.20-beta.1 || 2026.5.20-beta.2 || 2026.5.21-alpha.1 || 2026.5.21-beta.1 || 2026.5.22-beta.1 || 2026.5.23-alpha.1 || 2026.5.24-alpha.1 || 2026.5.24-beta.1 || 2026.5.24-beta.2 || 2026.5.25-alpha.1 || 2026.5.25-alpha.2 || 2026.5.25-beta.1 || 2026.5.26-beta.1 || 2026.5.26-beta.2 || 2026.5.27-alpha.1 || 2026.5.27-beta.1 || 2026.5.28-alpha.1 || 2026.5.28-beta.1 || 2026.5.28-beta.2 || 2026.5.28-beta.3 || 2026.5.28-beta.4 || 2026.5.29-alpha.1 || 2026.5.30-beta.1 || 2026.5.30-beta.2 || 2026.5.31-alpha.1 || 2026.5.31-beta.1 || 2026.5.31-beta.2 || 2026.5.31-beta.3 || 2026.5.31-beta.4 || 2026.6.1-alpha.1 || 2026.6.1-alpha.2 || 2026.6.1-alpha.3 || 2026.6.1-beta.1 || 2026.6.1-beta.2 || 2026.6.1-beta.3 || 2026.6.2-alpha.1 || 2026.6.2-alpha.2 || 2026.6.3-alpha.1"
@@ -82,7 +82,7 @@
82
82
  "acorn": "^8.16.0",
83
83
  "tsup": "^8.5.1",
84
84
  "typescript": "^5.9.3",
85
- "@remnic/core": "^9.3.585"
85
+ "@remnic/core": "^9.3.587"
86
86
  },
87
87
  "license": "MIT",
88
88
  "repository": {