@openagents-org/agent-launcher 0.2.67 → 0.2.68

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.67",
3
+ "version": "0.2.68",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -484,11 +484,6 @@ class ClaudeAdapter extends BaseAdapter {
484
484
  }
485
485
  lastResponseText.push(block.text.trim());
486
486
  postedThinking = true;
487
- // Only send status preview for longer responses (short ones arrive too quickly)
488
- if (block.text.trim().length > 80) {
489
- const preview = block.text.trim().slice(0, 60) + '...';
490
- await this.sendStatus(msgChannel, preview);
491
- }
492
487
  } else if (block.type === 'tool_use') {
493
488
  hasToolUseSinceLastText = true;
494
489
  postedThinking = false;