agentgui 1.0.606 → 1.0.607

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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.606",
3
+ "version": "1.0.607",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -24,14 +24,14 @@ echo "Saving to $DOCS_DIR"
24
24
 
25
25
  ab open "$BASE_URL"
26
26
  ab wait --load networkidle
27
- ab wait ".conversation-item"
27
+ sleep 1
28
28
 
29
29
  ab screenshot --full "$DOCS_DIR/screenshot-main.png"
30
30
  echo "Saved screenshot-main.png"
31
31
 
32
- ab eval 'document.querySelector(".conversation-item").click()'
32
+ ab eval 'document.querySelector(".conversation-item")?.click()'
33
+ sleep 2
33
34
  ab wait --load networkidle
34
- ab wait ".message, .event-block, .streaming-event, #chatView, .chat-messages"
35
35
 
36
36
  ab screenshot --full "$DOCS_DIR/screenshot-chat.png"
37
37
  echo "Saved screenshot-chat.png"
@@ -39,20 +39,24 @@ echo "Saved screenshot-chat.png"
39
39
  ab screenshot --full "$DOCS_DIR/screenshot-conversation.png"
40
40
  echo "Saved screenshot-conversation.png"
41
41
 
42
- ab eval 'document.getElementById("toolsManagerBtn")?.click()'
43
- ab wait "#toolsPopup.open, .tools-popup.open"
42
+ ab eval 'var b=document.getElementById("toolsManagerBtn"); if(b){b.style.display="";b.click();}'
43
+ sleep 1
44
44
 
45
45
  ab screenshot --full "$DOCS_DIR/screenshot-tools-popup.png"
46
46
  echo "Saved screenshot-tools-popup.png"
47
47
 
48
- ab eval 'document.querySelector("[data-view=files]")?.click()'
49
- ab wait "[data-view=files].active, .files-view, #filesView"
48
+ ab eval 'var p=document.getElementById("toolsPopup"); if(p)p.classList.remove("open");'
49
+ sleep 0.5
50
+
51
+ ab eval 'document.querySelector(".view-toggle-btn[data-view=\"files\"]")?.click()'
52
+ sleep 2
53
+ ab wait --load networkidle
50
54
 
51
55
  ab screenshot --full "$DOCS_DIR/screenshot-files.png"
52
56
  echo "Saved screenshot-files.png"
53
57
 
54
- ab eval 'document.querySelector("[data-view=terminal]")?.click()'
55
- ab wait "#terminalContainer:not([style*=\"display:none\"]), .terminal-container:not([style*=\"display:none\"])"
58
+ ab eval 'document.querySelector(".view-toggle-btn[data-view=\"terminal\"]")?.click()'
59
+ sleep 1
56
60
 
57
61
  ab screenshot --full "$DOCS_DIR/screenshot-terminal.png"
58
62
  echo "Saved screenshot-terminal.png"