@martian-engineering/lossless-claw 0.11.2 → 0.11.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.
@@ -2,6 +2,15 @@
2
2
 
3
3
  Lossless-claw reads plugin configuration from `plugins.entries.lossless-claw.config`.
4
4
 
5
+ Lossless-claw requires OpenClaw `2026.5.22` or newer so the host can enforce
6
+ context-engine runtime capabilities before an agent run starts. Agent runs need
7
+ a native host that provides the full context-engine lifecycle: session bootstrap,
8
+ pre-prompt assembly, after-turn ingestion, maintenance, compaction, and runtime
9
+ LLM completion. Native Codex and Pi embedded runs provide those capabilities;
10
+ generic CLI harnesses such as `claude-cli` and `codex-cli` do not. If you must
11
+ use a generic CLI harness, set `plugins.slots.contextEngine` to `legacy` for
12
+ that run instead of `lossless-claw`.
13
+
5
14
  Configuration precedence is:
6
15
 
7
16
  1. Environment variables
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@martian-engineering/lossless-claw",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "description": "Lossless Context Management plugin for OpenClaw — DAG-based conversation summarization with threshold compaction",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -46,7 +46,7 @@
46
46
  "vitest": "^3.0.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "openclaw": ">=2026.5.12"
49
+ "openclaw": ">=2026.5.22"
50
50
  },
51
51
  "peerDependenciesMeta": {
52
52
  "openclaw": {
@@ -61,14 +61,14 @@
61
61
  "./dist/index.js"
62
62
  ],
63
63
  "compat": {
64
- "pluginApi": ">=2026.5.12",
65
- "minGatewayVersion": "2026.5.12",
64
+ "pluginApi": ">=2026.5.22",
65
+ "minGatewayVersion": "2026.5.22",
66
66
  "tested": [
67
- "2026.5.12"
67
+ "2026.5.22"
68
68
  ]
69
69
  },
70
70
  "build": {
71
- "openclawVersion": "2026.5.12"
71
+ "openclawVersion": "2026.5.22"
72
72
  }
73
73
  },
74
74
  "repository": {