openclaw-quiubo 2.6.63 → 2.6.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/dist/index.js CHANGED
@@ -13484,7 +13484,7 @@ var pendingIdle = /* @__PURE__ */ new Map();
13484
13484
  var DEBOUNCE_MS = 2e3;
13485
13485
  var IDLE_DELAY_MS = 8e3;
13486
13486
  function isSessionWorking(sessionKey) {
13487
- return (activeToolCounts.get(sessionKey) ?? 0) > 0;
13487
+ return (activeToolCounts.get(sessionKey) ?? 0) > 0 || pendingIdle.has(sessionKey);
13488
13488
  }
13489
13489
  function generateLabel(toolName, params) {
13490
13490
  switch (toolName) {
@@ -14994,6 +14994,10 @@ async function routeInboundMessage(opts) {
14994
14994
  log?.debug?.(`[${accountId}] Quiubo: skipping empty ${info.kind} reply`);
14995
14995
  return;
14996
14996
  }
14997
+ if (payload.text && /^\s*(NO_REPLY|HEARTBEAT_OK)(\s+(NO_REPLY|HEARTBEAT_OK))*\s*$/i.test(payload.text) && outboundAttachments.length === 0) {
14998
+ log?.debug?.(`[${accountId}] Quiubo: suppressed silent reply token in ${info.kind} reply`);
14999
+ return;
15000
+ }
14997
15001
  const gw = gateways.get(accountId);
14998
15002
  const cachedConfig = gw?.getBotConfig(groupId);
14999
15003
  if (cachedConfig?.grantedScopes && !cachedConfig.grantedScopes.includes("send_messages")) {