groove-dev 0.27.57 → 0.27.58

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.27.57",
3
+ "version": "0.27.58",
4
4
  "description": "GROOVE CLI — manage AI coding agents from your terminal",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/daemon",
3
- "version": "0.27.57",
3
+ "version": "0.27.58",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -344,12 +344,9 @@ export class ConversationManager {
344
344
  continue;
345
345
  }
346
346
 
347
- // Claude Code stream-json: result block
347
+ // Claude Code stream-json: result block — skip broadcasting since
348
+ // the content was already streamed via assistant/content_block_delta
348
349
  if (json.type === 'result' && json.result) {
349
- this.daemon.broadcast({
350
- type: 'conversation:chunk',
351
- data: { conversationId: id, text: json.result },
352
- });
353
350
  continue;
354
351
  }
355
352