agentgui 1.0.183 → 1.0.184

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.183",
3
+ "version": "1.0.184",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -860,6 +860,8 @@ async function processMessageWithStreaming(conversationId, messageId, sessionId,
860
860
  debugLog(`[stream] Event ${eventCount}: type=${parsed.type}`);
861
861
 
862
862
  if (parsed.type === 'system') {
863
+ if (parsed.subtype === 'task_notification') return;
864
+
863
865
  const systemBlock = {
864
866
  type: 'system',
865
867
  subtype: parsed.subtype,