@inline-openclaw/inline 0.0.69 → 0.0.71-alpha.0
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 +16 -13
- package/dist/account-inspect-api.js +1069 -1034
- package/dist/account-inspect-api.js.map +4 -4
- package/dist/approval-handler.runtime.js +1586 -2828
- package/dist/approval-handler.runtime.js.map +7 -8
- package/dist/channel-plugin-api.js +1603 -2834
- package/dist/channel-plugin-api.js.map +9 -10
- package/dist/configured-state.js +28 -8
- package/dist/configured-state.js.map +2 -2
- package/dist/index.js +28 -8
- package/dist/index.js.map +2 -2
- package/dist/runtime-register-api.js +1660 -2833
- package/dist/runtime-register-api.js.map +8 -9
- package/dist/runtime-setter-api.js +28 -8
- package/dist/runtime-setter-api.js.map +2 -2
- package/dist/secret-contract-api.js +30 -10
- package/dist/secret-contract-api.js.map +2 -2
- package/dist/setup-entry.js +28 -8
- package/dist/setup-entry.js.map +2 -2
- package/dist/setup-plugin-api.js +1069 -1034
- package/dist/setup-plugin-api.js.map +4 -4
- package/docs/openclaw-setup.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -34,13 +34,14 @@ Reply-thread behavior:
|
|
|
34
34
|
|
|
35
35
|
## Install
|
|
36
36
|
|
|
37
|
-
The
|
|
37
|
+
The Inline plugin supports OpenClaw `2026.8.2` and newer, including
|
|
38
38
|
`2026.9.x`, with no upper version cap. It is built against `2026.9.4`. Install
|
|
39
|
-
the plugin version for your OpenClaw release line
|
|
39
|
+
the plugin version for your OpenClaw release line. The `0.0.71-alpha.0`
|
|
40
|
+
prerelease is available for testing; `0.0.70` remains the stable release.
|
|
40
41
|
|
|
41
42
|
| OpenClaw line | Inline plugin | Exact install |
|
|
42
43
|
| --- | --- | --- |
|
|
43
|
-
| `2026.8.2` and newer | `0.0.
|
|
44
|
+
| `2026.8.2` and newer | `0.0.70` | `openclaw plugins install npm:@inline-openclaw/inline@0.0.70 --force --accept-capabilities` |
|
|
44
45
|
| `2026.7.x` (`>=2026.7.1`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
|
|
45
46
|
| `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
|
|
46
47
|
|
|
@@ -52,31 +53,33 @@ on the 24.x line or Node 26.1+; Node 26 is recommended.
|
|
|
52
53
|
|
|
53
54
|
| Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
|
|
54
55
|
| --- | --- | --- | --- | --- |
|
|
55
|
-
| `0.0.
|
|
56
|
+
| `0.0.71-alpha.0` | `>=2026.8.2` | `0.0.19-alpha.0` | Prerelease | Reports install provenance safely, avoids false reconnect-loop status, and keeps autonomous sync-recovery diagnostics non-sticky. |
|
|
57
|
+
| `0.0.70` | `>=2026.8.2` | `0.0.18` | Stable | Preserves native reply suppression and send-policy decisions, with September approvals and shutdown cancellation. |
|
|
58
|
+
| `0.0.69` | `>=2026.8.2` | `0.0.18` | Previous | Added September system change approvals and shutdown cancellation. |
|
|
56
59
|
| `0.0.68` | `2026.8.2` | `0.0.18` | Previous | Retries stalled sync autonomously and isolates unrelated chat handlers while retaining ordered acknowledgements. |
|
|
57
60
|
| `0.0.67` | `2026.8.2` | `0.0.17` | Previous | Keeps the manifest compatible with ClawHub's metadata transport without changing the channel schema. |
|
|
58
61
|
| `0.0.66` | `2026.8.2` | `0.0.17` | Previous | Bounds direct account probes so SDK cleanup completes before the host deadline. |
|
|
59
|
-
| `0.0.65` | `2026.8.2` | `0.0.17` | Previous | Makes chat-triggered updates noninteractive by explicitly accepting the trusted Inline capability surface. |
|
|
60
|
-
| `0.0.64` | `2026.8.2` | `0.0.17` | Previous | Supports the stable 2026.8 plugin SDK and preserves DM/group reply-thread routing. |
|
|
61
62
|
|
|
62
|
-
###
|
|
63
|
+
### Prerelease 0.0.71-alpha.0
|
|
63
64
|
|
|
64
|
-
-
|
|
65
|
-
-
|
|
66
|
-
-
|
|
65
|
+
- Reports supported host installation provenance and timestamps in `/inline_version` without exposing package specs or filesystem paths.
|
|
66
|
+
- Diagnoses only active reconnect loops instead of treating the lifetime reconnect count as current failure evidence.
|
|
67
|
+
- Keeps SDK recovery scheduling, bucket retirement, and discovery retry observable without leaving a sticky channel error after autonomous recovery.
|
|
68
|
+
- Uses inherited backend chat access for bot presence in authorized DM and Space reply threads.
|
|
69
|
+
- Carries forward native reply suppression, September approvals, cancellation-safe shutdown, and realtime SDK `0.0.19-alpha.0` recovery behavior.
|
|
67
70
|
- Tests the extracted package against released hosts and checks that the bundled SDK matches the validated build.
|
|
68
71
|
|
|
69
72
|
The CI host matrix runs on `2026.8.2`, `2026.9.1`, and npm `latest`.
|
|
70
73
|
To check an installed host locally after building the SDK:
|
|
71
74
|
|
|
72
75
|
```sh
|
|
73
|
-
bun run --cwd openclaw check:host /path/to/node_modules/openclaw
|
|
76
|
+
bun run --cwd plugins/openclaw check:host /path/to/node_modules/openclaw
|
|
74
77
|
```
|
|
75
78
|
|
|
76
|
-
|
|
79
|
+
To test the prerelease from npm:
|
|
77
80
|
|
|
78
81
|
```sh
|
|
79
|
-
openclaw plugins install npm:@inline-openclaw/inline@0.0.
|
|
82
|
+
openclaw plugins install npm:@inline-openclaw/inline@0.0.71-alpha.0 --force --accept-capabilities
|
|
80
83
|
```
|
|
81
84
|
|
|
82
85
|
If the plugin is already installed, update in place:
|