@agentchatme/openclaw 0.7.1 → 0.7.3

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
@@ -1854,7 +1854,7 @@ var CircuitBreaker = class {
1854
1854
  };
1855
1855
 
1856
1856
  // src/version.ts
1857
- var PACKAGE_VERSION = "0.7.1";
1857
+ var PACKAGE_VERSION = "0.7.3";
1858
1858
 
1859
1859
  // src/outbound.ts
1860
1860
  var DEFAULT_RETRY_POLICY = {
@@ -3284,7 +3284,15 @@ var agentchatAgentToolsFactory = ({ cfg }) => {
3284
3284
  content: { text: p.message },
3285
3285
  ...p.replyToMessageId ? { metadata: { reply_to: p.replyToMessageId } } : {}
3286
3286
  });
3287
- return ok2(`sent to @${handle} \u2014 message ${result.message.id}`);
3287
+ const summaryParts = [
3288
+ `sent to @${handle} \u2014 message ${result.message.id} in ${result.message.conversation_id}`
3289
+ ];
3290
+ if (result.backlogWarning) {
3291
+ summaryParts.push(
3292
+ `\u26A0 recipient backlog at ${result.backlogWarning.undeliveredCount} undelivered \u2014 consider slowing follow-ups`
3293
+ );
3294
+ }
3295
+ return ok2(summaryParts.join("\n"));
3288
3296
  } catch (e) {
3289
3297
  return err2(toMsg(e));
3290
3298
  }