agentgui 1.0.48 → 1.0.49

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 +45 -0
  2. package/package.json +1 -1
package/.prd ADDED
@@ -0,0 +1,45 @@
1
+ # agentgui Work Items
2
+
3
+ ## ACTIVE 🔄
4
+
5
+ ### Phase 2: OpenCode Integration (PRIORITY 2)
6
+ **User Request:** Import all OpenCode conversations and keep them in sync
7
+
8
+ **Blockers:**
9
+ - [ ] Determine OpenCode conversation storage location
10
+
11
+ **Tasks:**
12
+ - [ ] Implement OpenCode history loader
13
+ - [ ] Merge both sources in database
14
+ - [ ] Display merged history in sidebar
15
+ - [ ] Support agent type filtering
16
+
17
+ ### Phase 3: Sync & Consistency (PRIORITY 3)
18
+ - [ ] File watchers for history changes
19
+ - [ ] Auto-import new conversations from CLI
20
+ - [ ] Keep GUI database in sync with filesystem
21
+ - [ ] Handle conflicts (same conversation in both systems)
22
+ - [ ] Implement read-only mode for imported conversations
23
+
24
+ ## ISSUES TO FIX ⚠️
25
+
26
+ **Issue #1: Timeout on Conversation Selection**
27
+ - Clicking conversations causes code execution timeout
28
+ - Needs investigation into click handlers
29
+
30
+ **Issue #2: Message Input Field**
31
+ - Message submission behavior unclear
32
+ - May not be properly wired to agent communication
33
+
34
+ ## Test Categories Remaining (10 of 12)
35
+ - [ ] Category 2: Real-Time Streaming with Persistence
36
+ - [ ] Category 3: HTML Rendering Without Text Mixing
37
+ - [ ] Category 4: Theme Compliance (Light/Dark)
38
+ - [ ] Category 5: Advanced RippleUI Components
39
+ - [ ] Category 6: Interactive Forms & Input Validation
40
+ - [ ] Category 7: Database Persistence & Recovery
41
+ - [ ] Category 8: State Consistency & Validation
42
+ - [ ] Category 9: Reconnection & Recovery
43
+ - [ ] Category 10: Error Handling & Edge Cases
44
+ - [ ] Category 11: Performance & Latency
45
+ - [ ] Category 12: Multi-Agent & Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.48",
3
+ "version": "1.0.49",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",