agentgui 1.0.83 → 1.0.85

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.83",
3
+ "version": "1.0.85",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -63,6 +63,9 @@ class AgentGUIClient {
63
63
  // Setup UI elements
64
64
  this.setupUI();
65
65
 
66
+ // Enable controls for initial interaction
67
+ this.enableControls();
68
+
66
69
  // Connect WebSocket
67
70
  if (this.config.autoConnect) {
68
71
  await this.connectWebSocket();
@@ -68,8 +68,8 @@ class ConversationManager {
68
68
  if (conv.id === this.activeId) li.classList.add('active');
69
69
 
70
70
  const title = conv.title || `Conversation ${conv.id.slice(0, 8)}`;
71
- const timestamp = conv.createdAt ? new Date(conv.createdAt).toLocaleDateString() : 'Unknown';
72
- const agent = conv.agentId || 'unknown';
71
+ const timestamp = conv.created_at ? new Date(conv.created_at).toLocaleDateString() : 'Unknown';
72
+ const agent = conv.agentType || 'unknown';
73
73
 
74
74
  li.innerHTML = `
75
75
  <div class="conversation-item-title">${this.escapeHtml(title)}</div>