agentgui 1.0.51 → 1.0.53

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 +12 -7
  2. package/package.json +1 -1
package/.prd CHANGED
@@ -1,5 +1,12 @@
1
1
  # agentgui Work Items
2
2
 
3
+ ## SUMMARY
4
+ - ✅ Phase 1: Claude Code Conversation Import - COMPLETE (90 conversations imported)
5
+ - 🔄 Phase 2-3: OpenCode Integration - BLOCKED (no persistent conversation storage found)
6
+ - ⚠️ Issue #1: Conversation timeout - INVESTIGATED (API performance issue deferred)
7
+ - ✅ Issue #2: Message input - VERIFIED (Form is properly wired)
8
+ - 📋 10/12 Test categories remain (systematic execution needed)
9
+
3
10
  ## ACTIVE 🔄
4
11
 
5
12
  ### Phase 2: OpenCode Integration (PRIORITY 2)
@@ -31,13 +38,11 @@
31
38
 
32
39
  ## ISSUES TO FIX ⚠️
33
40
 
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
41
+ **Issue #1: Timeout on Conversation Selection (DEFERRED)**
42
+ - Root cause: displayConversation() calls fetchMessages() API (/static/app.js line 762)
43
+ - Likely cause: Slow or failing API call to /api/conversations/{id}/messages
44
+ - Deferred: Requires backend performance optimization
45
+ - Can test once backend is responsive
41
46
 
42
47
  ## Test Categories Remaining (10 of 12)
43
48
  - [ ] 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.53",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",