agentgui 1.0.53 → 1.0.54

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 +11 -34
  2. package/package.json +1 -1
package/.prd CHANGED
@@ -1,48 +1,25 @@
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)
3
+ ## REMAINING WORK
9
4
 
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
5
+ ### Phase 2: OpenCode Integration (BLOCKED - No Persistent Storage)
6
+ **Investigation:** OpenCode does NOT store persistent conversation history.
17
7
  - ~/.config/opencode/opencode.json contains only MCP server config
18
8
  - 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
9
+ - Recommendation: Document as limitation, defer until OpenCode SDK provides conversation API
25
10
 
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)
11
+ ### Phase 3: Sync & Consistency (BLOCKED - Depends on Phase 2)
33
12
  - [ ] File watchers for history changes
34
13
  - [ ] Auto-import new conversations from CLI
35
14
  - [ ] Keep GUI database in sync with filesystem
36
- - [ ] Handle conflicts (same conversation in both systems)
15
+ - [ ] Handle conflicts
37
16
  - [ ] Implement read-only mode for imported conversations
38
17
 
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
18
+ ### Issue #1: Conversation Selection Timeout (DEFERRED)
19
+ - Root cause identified: fetchMessages() API performance issue
20
+ - Location: /static/app.js line 762
21
+ - Deferred: Requires backend API optimization
22
+ - Status: Can test once backend is responsive
46
23
 
47
24
  ## Test Categories Remaining (10 of 12)
48
25
  - [ ] 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.53",
3
+ "version": "1.0.54",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",