@psiclawops/hypercompositor 0.9.6 → 0.9.7

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
@@ -203,8 +203,8 @@ declare const _default: {
203
203
  id: string;
204
204
  name: string;
205
205
  description: string;
206
- configSchema: import("openclaw/plugin-sdk").OpenClawPluginConfigSchema;
207
- register: NonNullable<import("openclaw/plugin-sdk/plugin-entry").OpenClawPluginDefinition["register"]>;
208
- } & Pick<import("openclaw/plugin-sdk/plugin-entry").OpenClawPluginDefinition, "kind" | "reload" | "nodeHostCommands" | "securityAuditCollectors">;
206
+ configSchema: import("openclaw/plugin-sdk/core").OpenClawPluginConfigSchema;
207
+ register: NonNullable<import("openclaw/plugin-sdk/core").OpenClawPluginDefinition["register"]>;
208
+ } & Pick<import("openclaw/plugin-sdk/core").OpenClawPluginDefinition, "kind" | "reload" | "nodeHostCommands" | "securityAuditCollectors">;
209
209
  export default _default;
210
210
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -19,8 +19,7 @@
19
19
  *
20
20
  * Session key format expected: "agent:<agentId>:<channel>:<name>"
21
21
  */
22
- import { definePluginEntry } from 'openclaw/plugin-sdk/plugin-entry';
23
- import { buildPluginConfigSchema } from 'openclaw/plugin-sdk/core';
22
+ import { buildPluginConfigSchema, definePluginEntry } from 'openclaw/plugin-sdk/core';
24
23
  import { z } from 'zod';
25
24
  import { detectTopicShift, stripMessageMetadata, SessionTopicMap, applyToolGradientToWindow, OPENCLAW_BOOTSTRAP_FILES, rotateSessionContext, TRIM_SOFT_TARGET, TRIM_GROWTH_THRESHOLD, TRIM_HEADROOM_FRACTION, resolveTrimBudgets, resolveAdaptiveLifecyclePolicy, formatToolChainStub, decideReplayRecovery, isReplayState, recordOutputMetrics,
26
25
  // Sprint 3: unified pressure signal
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@psiclawops/hypercompositor",
3
- "version": "0.9.6",
4
- "description": "HyperCompositor \u2014 context engine plugin for OpenClaw",
3
+ "version": "0.9.7",
4
+ "description": "HyperCompositor context engine plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "license": "Apache-2.0",
@@ -18,7 +18,7 @@
18
18
  "openclaw": {
19
19
  "plugin": {
20
20
  "id": "hypercompositor",
21
- "name": "HyperCompositor \u2014 Context Engine",
21
+ "name": "HyperCompositor Context Engine",
22
22
  "kind": "context-engine"
23
23
  },
24
24
  "extensions": [
@@ -29,8 +29,8 @@
29
29
  "minGatewayVersion": "2026.4.12"
30
30
  },
31
31
  "build": {
32
- "openclawVersion": "2026.4.9",
33
- "pluginSdkVersion": "2026.4.12"
32
+ "openclawVersion": "2026.5.2",
33
+ "pluginSdkVersion": "2026.5.2"
34
34
  }
35
35
  },
36
36
  "scripts": {
@@ -40,11 +40,11 @@
40
40
  "typecheck": "tsc --noEmit"
41
41
  },
42
42
  "dependencies": {
43
- "@psiclawops/hypermem": "0.9.6",
43
+ "@psiclawops/hypermem": "0.9.7",
44
44
  "zod": "^4.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "openclaw": "*",
47
+ "openclaw": "2026.5.2",
48
48
  "typescript": "^5.4.0"
49
49
  },
50
50
  "peerDependencies": {
@@ -63,5 +63,8 @@
63
63
  "openclaw.plugin.json",
64
64
  "README.md",
65
65
  "LICENSE"
66
- ]
66
+ ],
67
+ "overrides": {
68
+ "uuid": "14.0.0"
69
+ }
67
70
  }