agentgui 1.0.49 → 1.0.51

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 +13 -5
  2. package/package.json +1 -1
package/.prd CHANGED
@@ -5,11 +5,19 @@
5
5
  ### Phase 2: OpenCode Integration (PRIORITY 2)
6
6
  **User Request:** Import all OpenCode conversations and keep them in sync
7
7
 
8
- **Blockers:**
9
- - [ ] Determine OpenCode conversation storage location
10
-
11
- **Tasks:**
12
- - [ ] Implement OpenCode history loader
8
+ **Investigation Result:**
9
+ - OpenCode does NOT store persistent conversation history like Claude Code
10
+ - ~/.config/opencode/opencode.json contains only MCP server config
11
+ - No sessions-index.json or history.jsonl found in OpenCode directories
12
+ - OpenCode may not persist conversations to filesystem
13
+
14
+ **Options:**
15
+ - [ ] Option A: Implement OpenCode CLI integration to query conversations at runtime (requires OpenCode SDK/API)
16
+ - [ ] Option B: Focus on Claude Code import (already complete) and document OpenCode limitation
17
+ - [ ] Option C: Create placeholder for future OpenCode support when SDK is available
18
+
19
+ **Tasks (waiting for approach decision):**
20
+ - [ ] Implement OpenCode history loader (if feasible)
13
21
  - [ ] Merge both sources in database
14
22
  - [ ] Display merged history in sidebar
15
23
  - [ ] Support agent type filtering
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.49",
3
+ "version": "1.0.51",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",