agentgui 1.0.53 → 1.0.55

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/package.json +1 -1
  2. package/.prd +0 -58
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.53",
3
+ "version": "1.0.55",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/.prd DELETED
@@ -1,58 +0,0 @@
1
- # agentgui Work Items
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
-
10
- ## ACTIVE 🔄
11
-
12
- ### Phase 2: OpenCode Integration (PRIORITY 2)
13
- **User Request:** Import all OpenCode conversations and keep them in sync
14
-
15
- **Investigation Result:**
16
- - OpenCode does NOT store persistent conversation history like Claude Code
17
- - ~/.config/opencode/opencode.json contains only MCP server config
18
- - No sessions-index.json or history.jsonl found in OpenCode directories
19
- - OpenCode may not persist conversations to filesystem
20
-
21
- **Options:**
22
- - [ ] Option A: Implement OpenCode CLI integration to query conversations at runtime (requires OpenCode SDK/API)
23
- - [ ] Option B: Focus on Claude Code import (already complete) and document OpenCode limitation
24
- - [ ] Option C: Create placeholder for future OpenCode support when SDK is available
25
-
26
- **Tasks (waiting for approach decision):**
27
- - [ ] Implement OpenCode history loader (if feasible)
28
- - [ ] Merge both sources in database
29
- - [ ] Display merged history in sidebar
30
- - [ ] Support agent type filtering
31
-
32
- ### Phase 3: Sync & Consistency (PRIORITY 3)
33
- - [ ] File watchers for history changes
34
- - [ ] Auto-import new conversations from CLI
35
- - [ ] Keep GUI database in sync with filesystem
36
- - [ ] Handle conflicts (same conversation in both systems)
37
- - [ ] Implement read-only mode for imported conversations
38
-
39
- ## ISSUES TO FIX ⚠️
40
-
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
46
-
47
- ## Test Categories Remaining (10 of 12)
48
- - [ ] Category 2: Real-Time Streaming with Persistence
49
- - [ ] Category 3: HTML Rendering Without Text Mixing
50
- - [ ] Category 4: Theme Compliance (Light/Dark)
51
- - [ ] Category 5: Advanced RippleUI Components
52
- - [ ] Category 6: Interactive Forms & Input Validation
53
- - [ ] Category 7: Database Persistence & Recovery
54
- - [ ] Category 8: State Consistency & Validation
55
- - [ ] Category 9: Reconnection & Recovery
56
- - [ ] Category 10: Error Handling & Edge Cases
57
- - [ ] Category 11: Performance & Latency
58
- - [ ] Category 12: Multi-Agent & Configuration