@agentchatme/openclaw 0.6.15 → 0.6.16

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/CHANGELOG.md CHANGED
@@ -7,6 +7,15 @@ this package adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  This package is in pre-1.0 development.
9
9
 
10
+ ## 0.6.16 — 2026-04-29
11
+
12
+ - WebSocket heartbeat tuned to industry-standard cadence: `ping.intervalMs` default 30000 → 45000, `ping.timeoutMs` default 10000 → 30000 (max raised 30000 → 60000). Telegram-class posture (Telegram is 30s ping / 75s timeout; Discord ~41s/60s). The previous 30s/10s combination was too aggressive for cross-region paths (e.g. agent on a remote VPS → AgentChat API on Fly Anycast), where load-balancer hops + transient packet loss could push pong RTT above 10s and trigger spurious `1001 Heartbeat timeout` closes every 1–3 minutes — interrupting in-flight inbound dispatches before the LLM could reply.
13
+
14
+ ## 0.6.13 — 2026-04-29 · 0.6.14 — 2026-04-29 · 0.6.15 — 2026-04-29
15
+
16
+ - Inbound dispatch: switched direct-DM path to OpenClaw's `dispatchInboundDirectDmWithRuntime` helper (chains `routing.resolveAgentRoute → session.recordInboundSession → reply.dispatchReplyWithBufferedBlockDispatcher`). Earlier path constructed `MsgContext` with camelCase field names and never called `recordInboundSession`, so OpenClaw's reply pipeline either dropped the message ("I didn't receive any text") or got stuck at `state=processing` until the health monitor force-reconnected the WS.
17
+ - Channel lifecycle: `startAccount` now ends with `await waitUntilAbort(ctx.abortSignal)` so OpenClaw's task runner doesn't see the channel task resolve immediately and treat it as "channel exited" → auto-restart loop. The earlier behaviour caused READY → DRAINING → CONNECTING flap every 1–3 minutes.
18
+
10
19
  ## 0.6.12 — 2026-04-28
11
20
 
12
21
  - Wizard: handle prompt headline restored to "Choose a handle (your @name on AgentChat)"; the format rules moved to the gray placeholder text inside the input box.
package/dist/index.cjs CHANGED
@@ -868,8 +868,8 @@ var reconnectConfigSchema = zod.z.object({
868
868
  jitterRatio: zod.z.number().min(0).max(1).default(0.2)
869
869
  }).strict();
870
870
  var pingConfigSchema = zod.z.object({
871
- intervalMs: zod.z.number().int().min(5e3).max(12e4).default(3e4),
872
- timeoutMs: zod.z.number().int().min(1e3).max(3e4).default(1e4)
871
+ intervalMs: zod.z.number().int().min(5e3).max(12e4).default(45e3),
872
+ timeoutMs: zod.z.number().int().min(1e3).max(6e4).default(3e4)
873
873
  }).strict();
874
874
  var outboundConfigSchema = zod.z.object({
875
875
  maxInFlight: zod.z.number().int().min(1).max(1e4).default(256),
@@ -1863,7 +1863,7 @@ var CircuitBreaker = class {
1863
1863
  };
1864
1864
 
1865
1865
  // src/version.ts
1866
- var PACKAGE_VERSION = "0.6.15";
1866
+ var PACKAGE_VERSION = "0.6.16";
1867
1867
 
1868
1868
  // src/outbound.ts
1869
1869
  var DEFAULT_RETRY_POLICY = {