@martian-engineering/lossless-claw 0.10.0 → 0.11.1
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/README.md +3 -0
- package/dist/index.js +270 -14
- package/docs/configuration.md +1 -1
- package/docs/focus-briefs-implementation-plan.md +240 -0
- package/docs/tui.md +17 -0
- package/doctor-contract-api.d.ts +5 -0
- package/doctor-contract-api.js +158 -40
- package/package.json +11 -6
package/README.md
CHANGED
|
@@ -65,6 +65,8 @@ The bundled skill focuses on configuration, diagnostics, architecture, and recal
|
|
|
65
65
|
- Node.js 22+
|
|
66
66
|
- An LLM provider configured in OpenClaw (used for summarization)
|
|
67
67
|
|
|
68
|
+
> **Compatibility:** `lossless-claw@0.10.0` and newer require OpenClaw `2026.5.12` or newer. These releases call OpenClaw's `api.runtime.llm.complete` capability for summarization, which is unavailable in older OpenClaw builds. If you cannot upgrade OpenClaw yet, stay on `lossless-claw@0.9.4` and remove `0.10.x`-only config such as `sweepMaxDepth`.
|
|
69
|
+
|
|
68
70
|
### Install the plugin
|
|
69
71
|
|
|
70
72
|
Use OpenClaw's plugin installer (recommended):
|
|
@@ -232,6 +234,7 @@ Add a `subagent` policy under `plugins.entries.lossless-claw` and allowlist the
|
|
|
232
234
|
- `subagent.allowedModels` is optional but recommended. Use `"*"` only if you intentionally want to trust any target model.
|
|
233
235
|
- The chosen expansion target must also be available in OpenClaw's normal model catalog. If it is not already configured elsewhere, add it under the top-level `models` map as shown above.
|
|
234
236
|
- If you prefer splitting provider and model, set `config.expansionProvider` and use a bare `config.expansionModel`.
|
|
237
|
+
- `openclaw doctor --fix` can add the required `subagent` policy for a configured `expansionModel`. If a host still rejects a stale or unavailable override, `lcm_expand_query` retries once without the override so recall does not fail hard.
|
|
235
238
|
|
|
236
239
|
Plugin config equivalents:
|
|
237
240
|
|