@openagents-org/agent-launcher 0.2.40 → 0.2.41

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.2.40",
3
+ "version": "0.2.41",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -413,10 +413,11 @@ class ClaudeAdapter extends BaseAdapter {
413
413
  }
414
414
  lastResponseText.push(block.text.trim());
415
415
  postedThinking = true;
416
- // Don't post text as "thinking" it will be sent as the final response
417
- // Only send a brief status indicator
418
- const preview = block.text.trim().slice(0, 60);
419
- await this.sendStatus(msgChannel, preview.length < block.text.trim().length ? preview + '...' : preview);
416
+ // Only send status preview for longer responses (short ones arrive too quickly)
417
+ if (block.text.trim().length > 80) {
418
+ const preview = block.text.trim().slice(0, 60) + '...';
419
+ await this.sendStatus(msgChannel, preview);
420
+ }
420
421
  } else if (block.type === 'tool_use') {
421
422
  hasToolUseSinceLastText = true;
422
423
  postedThinking = false;