@inline-openclaw/inline 0.0.69 → 0.0.70
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
CHANGED
|
@@ -40,7 +40,7 @@ the plugin version for your OpenClaw release line:
|
|
|
40
40
|
|
|
41
41
|
| OpenClaw line | Inline plugin | Exact install |
|
|
42
42
|
| --- | --- | --- |
|
|
43
|
-
| `2026.8.2` and newer | `0.0.
|
|
43
|
+
| `2026.8.2` and newer | `0.0.70` | `openclaw plugins install npm:@inline-openclaw/inline@0.0.70 --force --accept-capabilities` |
|
|
44
44
|
| `2026.7.x` (`>=2026.7.1`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
|
|
45
45
|
| `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
46
|
|
|
@@ -52,14 +52,16 @@ on the 24.x line or Node 26.1+; Node 26 is recommended.
|
|
|
52
52
|
|
|
53
53
|
| Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
|
|
54
54
|
| --- | --- | --- | --- | --- |
|
|
55
|
-
| `0.0.
|
|
55
|
+
| `0.0.70` | `>=2026.8.2` | `0.0.18` | Current | Preserves native reply suppression and send-policy decisions, with September approvals and shutdown cancellation. |
|
|
56
|
+
| `0.0.69` | `>=2026.8.2` | `0.0.18` | Previous | Added September system change approvals and shutdown cancellation. |
|
|
56
57
|
| `0.0.68` | `2026.8.2` | `0.0.18` | Previous | Retries stalled sync autonomously and isolates unrelated chat handlers while retaining ordered acknowledgements. |
|
|
57
58
|
| `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
59
|
| `0.0.66` | `2026.8.2` | `0.0.17` | Previous | Bounds direct account probes so SDK cleanup completes before the host deadline. |
|
|
59
60
|
| `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
61
|
|
|
62
|
-
### Release 0.0.
|
|
62
|
+
### Release 0.0.70
|
|
63
|
+
|
|
64
|
+
- Matches native Telegram by suppressing empty-response fallbacks in message-tool-only mode and honoring host send-policy denial, including after delivery errors.
|
|
63
65
|
|
|
64
66
|
- Removes the host upper bound and supports September system change approvals while retaining August APIs.
|
|
65
67
|
- Cancels reply generation when the channel stops, suppresses late sends, and bounds shutdown waits.
|
|
@@ -76,7 +78,7 @@ bun run --cwd openclaw check:host /path/to/node_modules/openclaw
|
|
|
76
78
|
From npm:
|
|
77
79
|
|
|
78
80
|
```sh
|
|
79
|
-
openclaw plugins install npm:@inline-openclaw/inline@0.0.
|
|
81
|
+
openclaw plugins install npm:@inline-openclaw/inline@0.0.70 --force --accept-capabilities
|
|
80
82
|
```
|
|
81
83
|
|
|
82
84
|
If the plugin is already installed, update in place:
|
|
@@ -76864,7 +76864,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
76864
76864
|
const skipFallbackSuppressed = dispatchResult.sourceReplyDeliveryMode === "message_tool_only";
|
|
76865
76865
|
const hostRequestedNoVisibleRecovery = dispatchResult.noVisibleReplyFallbackEligible === true;
|
|
76866
76866
|
const explicitFailure = dispatchError != null || failedNonSilent;
|
|
76867
|
-
if (!abortSignal.aborted && !delivered && !hostDeliveredReply && !deferredToActiveRun && !adoptingThread && (explicitFailure || !hostHandledTurn && !deliberateSilence &&
|
|
76867
|
+
if (!abortSignal.aborted && dispatchResult.sendPolicyDenied !== true && !delivered && !hostDeliveredReply && !deferredToActiveRun && !adoptingThread && (explicitFailure || !hostHandledTurn && !deliberateSilence && !skipFallbackSuppressed && (skippedNonSilent || hostRequestedNoVisibleRecovery))) {
|
|
76868
76868
|
botPresenceLifecycle.fail();
|
|
76869
76869
|
const fallbackText = undeliveredFinalText.trim() ? undeliveredFinalText : dispatchError != null ? INLINE_REQUEST_ERROR_FALLBACK : EMPTY_RESPONSE_FALLBACK;
|
|
76870
76870
|
const sent = await client.sendMessage({
|
|
@@ -80884,5 +80884,5 @@ export {
|
|
|
80884
80884
|
inlineChannelPlugin2 as inlineChannelPlugin
|
|
80885
80885
|
};
|
|
80886
80886
|
|
|
80887
|
-
//# debugId=
|
|
80887
|
+
//# debugId=D6C0042DF79E773F64756E2164756E21
|
|
80888
80888
|
//# sourceMappingURL=channel-plugin-api.js.map
|