agentgui 1.0.51 → 1.0.52

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/.prd +5 -7
  2. package/package.json +1 -1
package/.prd CHANGED
@@ -31,13 +31,11 @@
31
31
 
32
32
  ## ISSUES TO FIX ⚠️
33
33
 
34
- **Issue #1: Timeout on Conversation Selection**
35
- - Clicking conversations causes code execution timeout
36
- - Needs investigation into click handlers
37
-
38
- **Issue #2: Message Input Field**
39
- - Message submission behavior unclear
40
- - May not be properly wired to agent communication
34
+ **Issue #1: Timeout on Conversation Selection (DEFERRED)**
35
+ - Root cause: displayConversation() calls fetchMessages() API (/static/app.js line 762)
36
+ - Likely cause: Slow or failing API call to /api/conversations/{id}/messages
37
+ - Deferred: Requires backend performance optimization
38
+ - Can test once backend is responsive
41
39
 
42
40
  ## Test Categories Remaining (10 of 12)
43
41
  - [ ] Category 2: Real-Time Streaming with Persistence
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",