agentgui 1.0.696 → 1.0.697

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": "agentgui",
3
- "version": "1.0.696",
3
+ "version": "1.0.697",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -1333,6 +1333,7 @@ class StreamingRenderer {
1333
1333
  * Render system event
1334
1334
  */
1335
1335
  renderBlockSystem(block, context) {
1336
+ if (!block.model && !block.cwd && !block.tools) return null;
1336
1337
  const details = document.createElement('details');
1337
1338
  details.className = 'folded-tool folded-tool-info permanently-expanded';
1338
1339
  details.dataset.eventType = 'system';