@inline-openclaw/inline 0.0.64 → 0.0.66
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 -14
- package/dist/approval-handler.runtime.js +23 -2
- package/dist/approval-handler.runtime.js.map +3 -3
- package/dist/channel-plugin-api.js +54 -24
- package/dist/channel-plugin-api.js.map +5 -5
- package/dist/runtime-register-api.js +24 -3
- package/dist/runtime-register-api.js.map +4 -4
- package/docs/openclaw-setup.md +13 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,9 +39,9 @@ the plugin version for your OpenClaw release line:
|
|
|
39
39
|
|
|
40
40
|
| OpenClaw line | Inline plugin | Exact install |
|
|
41
41
|
| --- | --- | --- |
|
|
42
|
-
| `2026.8.x` (`>=2026.8.2`) | `0.0.
|
|
43
|
-
| `2026.7.x` | `0.0.63` | `openclaw plugins install
|
|
44
|
-
| `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`) | `0.0.63` | `openclaw plugins install
|
|
42
|
+
| `2026.8.x` (`>=2026.8.2`) | `0.0.66` | `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities` |
|
|
43
|
+
| `2026.7.x` (`>=2026.7.1`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
|
|
44
|
+
| `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` |
|
|
45
45
|
|
|
46
46
|
`@latest` follows the newest supported OpenClaw line; it is not a compatibility
|
|
47
47
|
alias for older host APIs.
|
|
@@ -50,35 +50,37 @@ alias for older host APIs.
|
|
|
50
50
|
|
|
51
51
|
| Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
|
|
52
52
|
| --- | --- | --- | --- | --- |
|
|
53
|
-
| `0.0.
|
|
53
|
+
| `0.0.66` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Current | Bounds direct account probes so SDK cleanup completes before the host deadline. |
|
|
54
|
+
| `0.0.65` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Makes chat-triggered updates noninteractive by explicitly accepting the trusted Inline capability surface. |
|
|
55
|
+
| `0.0.64` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Supports the stable 2026.8 plugin SDK and preserves DM/group reply-thread routing. |
|
|
54
56
|
| `0.0.63` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Applies live-safe settings writes without restarting the Inline channel before it can answer. |
|
|
55
57
|
| `0.0.62` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Keeps the thread-only Following control out of direct-message agent settings, where the server does not support it. |
|
|
56
58
|
| `0.0.61` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Bounds model discovery through provider authentication so agent settings return a fallback instead of hanging indefinitely. |
|
|
57
|
-
| `0.0.60` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Uses the plugin index's supported force-install path for exact updates on current OpenClaw hosts. |
|
|
58
|
-
| `0.0.59` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Adds mentionable Agent specialization, exact Agent activation, and fail-closed bot-message provenance. |
|
|
59
59
|
|
|
60
60
|
From npm:
|
|
61
61
|
|
|
62
62
|
```sh
|
|
63
|
-
openclaw plugins install @inline-openclaw/inline
|
|
63
|
+
openclaw plugins install @inline-openclaw/inline --force --accept-capabilities
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
If the plugin is already installed, update in place:
|
|
67
67
|
|
|
68
68
|
```sh
|
|
69
|
-
openclaw plugins
|
|
69
|
+
openclaw plugins update inline --accept-capabilities
|
|
70
70
|
openclaw gateway restart
|
|
71
71
|
openclaw plugins list
|
|
72
|
-
openclaw
|
|
72
|
+
openclaw plugins inspect inline --json
|
|
73
|
+
openclaw channels status --channel inline --probe --json
|
|
73
74
|
openclaw message send --channel inline --target chat:123 --message "Inline smoke test" --dry-run
|
|
74
75
|
```
|
|
75
76
|
|
|
76
77
|
After initial installation, an OpenClaw owner can run `/inline_update` from
|
|
77
|
-
Inline. The command delegates to OpenClaw's tracked-plugin updater
|
|
78
|
-
credential variables from the updater process, and
|
|
79
|
-
|
|
78
|
+
Inline. The command delegates to OpenClaw's tracked-plugin updater with explicit
|
|
79
|
+
capability consent, strips credential variables from the updater process, and
|
|
80
|
+
asks for `/restart` after OpenClaw reports a successful update. Other authorized
|
|
81
|
+
chat members cannot update host plugins.
|
|
80
82
|
|
|
81
|
-
After updating, verify that `openclaw plugins list` shows `inline`, `openclaw channels status` reports Inline configured/running, and `openclaw plugins inspect inline --json` reports the expected package version.
|
|
83
|
+
After updating, verify that `openclaw plugins list` shows `inline`, `openclaw channels status --channel inline --probe --json` reports Inline configured/running, and `openclaw plugins inspect inline --json` reports the expected package version.
|
|
82
84
|
|
|
83
85
|
From a local checkout (dev):
|
|
84
86
|
|
|
@@ -86,7 +88,7 @@ From a local checkout (dev):
|
|
|
86
88
|
cd /path/to/inline/openclaw
|
|
87
89
|
bun run build
|
|
88
90
|
npm pack --ignore-scripts --pack-destination /tmp
|
|
89
|
-
openclaw plugins install
|
|
91
|
+
openclaw plugins install npm-pack:/tmp/inline-openclaw-inline-<version>.tgz --force --accept-capabilities
|
|
90
92
|
```
|
|
91
93
|
|
|
92
94
|
## Configure
|
|
@@ -5632,6 +5632,20 @@ var BlockDisclosure_Kind;
|
|
|
5632
5632
|
BlockDisclosure_Kind2[BlockDisclosure_Kind2["DEFAULT"] = 0] = "DEFAULT";
|
|
5633
5633
|
BlockDisclosure_Kind2[BlockDisclosure_Kind2["PROGRESS"] = 1] = "PROGRESS";
|
|
5634
5634
|
})(BlockDisclosure_Kind || (BlockDisclosure_Kind = {}));
|
|
5635
|
+
var BlockDisclosure_ActivityKind;
|
|
5636
|
+
(function(BlockDisclosure_ActivityKind2) {
|
|
5637
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
5638
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["REASONING"] = 1] = "REASONING";
|
|
5639
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["EXPLORE"] = 2] = "EXPLORE";
|
|
5640
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["READ"] = 3] = "READ";
|
|
5641
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["SEARCH"] = 4] = "SEARCH";
|
|
5642
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["EDIT"] = 5] = "EDIT";
|
|
5643
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["DELETE"] = 6] = "DELETE";
|
|
5644
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["MOVE"] = 7] = "MOVE";
|
|
5645
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["COMMAND"] = 8] = "COMMAND";
|
|
5646
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["WEB"] = 9] = "WEB";
|
|
5647
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["TOOL"] = 10] = "TOOL";
|
|
5648
|
+
})(BlockDisclosure_ActivityKind || (BlockDisclosure_ActivityKind = {}));
|
|
5635
5649
|
var BlockTable_Alignment;
|
|
5636
5650
|
(function(BlockTable_Alignment2) {
|
|
5637
5651
|
BlockTable_Alignment2[BlockTable_Alignment2["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
@@ -9551,13 +9565,15 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
|
|
|
9551
9565
|
{ no: 2, name: "kind", kind: "enum", T: () => ["BlockDisclosure.Kind", BlockDisclosure_Kind, "KIND_"] },
|
|
9552
9566
|
{ no: 3, name: "initially_open", kind: "scalar", opt: true, T: 8 },
|
|
9553
9567
|
{ no: 4, name: "children", kind: "message", repeat: 1, T: () => Block },
|
|
9554
|
-
{ no: 5, name: "is_rtl", kind: "scalar", opt: true, T: 8 }
|
|
9568
|
+
{ no: 5, name: "is_rtl", kind: "scalar", opt: true, T: 8 },
|
|
9569
|
+
{ no: 6, name: "activity_kind", kind: "enum", T: () => ["BlockDisclosure.ActivityKind", BlockDisclosure_ActivityKind, "ACTIVITY_KIND_"] }
|
|
9555
9570
|
]);
|
|
9556
9571
|
}
|
|
9557
9572
|
create(value) {
|
|
9558
9573
|
const message = globalThis.Object.create(this.messagePrototype);
|
|
9559
9574
|
message.kind = 0;
|
|
9560
9575
|
message.children = [];
|
|
9576
|
+
message.activityKind = 0;
|
|
9561
9577
|
if (value !== undefined)
|
|
9562
9578
|
import_runtime3.reflectionMergePartial(this, message, value);
|
|
9563
9579
|
return message;
|
|
@@ -9582,6 +9598,9 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
|
|
|
9582
9598
|
case 5:
|
|
9583
9599
|
message.isRtl = reader.bool();
|
|
9584
9600
|
break;
|
|
9601
|
+
case 6:
|
|
9602
|
+
message.activityKind = reader.int32();
|
|
9603
|
+
break;
|
|
9585
9604
|
default:
|
|
9586
9605
|
let u = options.readUnknownField;
|
|
9587
9606
|
if (u === "throw")
|
|
@@ -9604,6 +9623,8 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
|
|
|
9604
9623
|
Block.internalBinaryWrite(message.children[i], writer.tag(4, import_runtime.WireType.LengthDelimited).fork(), options).join();
|
|
9605
9624
|
if (message.isRtl !== undefined)
|
|
9606
9625
|
writer.tag(5, import_runtime.WireType.Varint).bool(message.isRtl);
|
|
9626
|
+
if (message.activityKind !== 0)
|
|
9627
|
+
writer.tag(6, import_runtime.WireType.Varint).int32(message.activityKind);
|
|
9607
9628
|
let u = options.writeUnknownFields;
|
|
9608
9629
|
if (u !== false)
|
|
9609
9630
|
(u == true ? import_runtime2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
@@ -69212,5 +69233,5 @@ export {
|
|
|
69212
69233
|
inlineApprovalNativeRuntime
|
|
69213
69234
|
};
|
|
69214
69235
|
|
|
69215
|
-
//# debugId=
|
|
69236
|
+
//# debugId=74BD307ABE1FBD3564756E2164756E21
|
|
69216
69237
|
//# sourceMappingURL=approval-handler.runtime.js.map
|