@inline-openclaw/inline 0.0.53 → 0.0.54
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
|
@@ -39,11 +39,11 @@ Requires OpenClaw `2026.6.11` or newer.
|
|
|
39
39
|
|
|
40
40
|
| Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
|
|
41
41
|
| --- | --- | --- | --- | --- |
|
|
42
|
-
| `0.0.
|
|
42
|
+
| `0.0.54` | `>=2026.6.11` | `0.0.13` | Current | Keeps recovered WebSocket and best-effort cursor warnings out of healthy channel status. |
|
|
43
|
+
| `0.0.53` | `>=2026.6.11` | `0.0.13` | Stable | Clears recovered Inline WebSocket errors from channel status after reconnect. |
|
|
43
44
|
| `0.0.52` | `>=2026.6.11` | `0.0.13` | Stable | Patch release for the SDK protocol dependency. |
|
|
44
45
|
| `0.0.51` | `>=2026.6.11` | `0.0.12` | Stable | Added follow-mode mention gating for eligible reply/fresh Inline threads. |
|
|
45
46
|
| `0.0.50` | `>=2026.6.11` | `0.0.11` | Stable | Supported line for current stable OpenClaw. Uses focused plugin SDK entrypoints and canonical ClawHub install metadata. |
|
|
46
|
-
| `0.0.48` - `0.0.49` | `>=2026.6.11` | `0.0.11` | Stable | Transitional 2026.6.11 compatibility releases. `0.0.49` fixed metadata shape but still used the non-canonical ClawHub spec. |
|
|
47
47
|
|
|
48
48
|
From npm:
|
|
49
49
|
|
|
@@ -46409,6 +46409,9 @@ function formatSdkLogLine(message, meta3) {
|
|
|
46409
46409
|
function isRecoverableInlineConnectionError(line) {
|
|
46410
46410
|
return /^(WebSocket (?:closed|error|reconnect scheduled)|Protocol reconnect scheduled|Ping timeout, reconnecting|Failed to send RPC request; waiting for reconnect)/.test(line);
|
|
46411
46411
|
}
|
|
46412
|
+
function isNonStickyInlineSdkWarning(line) {
|
|
46413
|
+
return line.startsWith("GET_UPDATES_STATE failed (continuing without date cursor)");
|
|
46414
|
+
}
|
|
46412
46415
|
function isInlineConnectionRecovered(diagnostics) {
|
|
46413
46416
|
const snapshot = diagnostics;
|
|
46414
46417
|
const protocol2 = snapshot.protocol;
|
|
@@ -48117,6 +48120,9 @@ async function monitorInlineProvider(params) {
|
|
|
48117
48120
|
log?.warn(line);
|
|
48118
48121
|
if (isRecoverableInlineConnectionError(line)) {
|
|
48119
48122
|
recoverableConnectionError = line;
|
|
48123
|
+
} else if (isNonStickyInlineSdkWarning(line)) {
|
|
48124
|
+
pushDiagnostics();
|
|
48125
|
+
return;
|
|
48120
48126
|
} else {
|
|
48121
48127
|
recoverableConnectionError = null;
|
|
48122
48128
|
}
|
|
@@ -53275,5 +53281,5 @@ export {
|
|
|
53275
53281
|
inlineChannelPlugin
|
|
53276
53282
|
};
|
|
53277
53283
|
|
|
53278
|
-
//# debugId=
|
|
53284
|
+
//# debugId=B0FC90E7FD8F9EE064756E2164756E21
|
|
53279
53285
|
//# sourceMappingURL=channel-plugin-api.js.map
|