agentgui 1.0.686 → 1.0.688

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.686",
3
+ "version": "1.0.688",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -3429,11 +3429,6 @@ async function processMessageWithStreaming(conversationId, messageId, sessionId,
3429
3429
  if (parsed.type === 'system') {
3430
3430
  if (parsed.subtype === 'task_notification') return;
3431
3431
 
3432
- if (parsed.session_id && parsed.session_id !== resumeSessionId) {
3433
- queries.setClaudeSessionId(conversationId, parsed.session_id, sessionId);
3434
- debugLog(`[stream] Eagerly persisted claudeSessionId=${parsed.session_id} for conv=${conversationId}`);
3435
- }
3436
-
3437
3432
  const systemBlock = {
3438
3433
  type: 'system',
3439
3434
  subtype: parsed.subtype,
@@ -2695,11 +2695,6 @@ class AgentGUIClient {
2695
2695
 
2696
2696
  this._showSkeletonLoading(conversationId);
2697
2697
 
2698
- // Disable send button during skeleton loading to prevent race conditions
2699
- if (this.ui.sendButton) {
2700
- this.ui.sendButton.disabled = true;
2701
- }
2702
-
2703
2698
  let fullData;
2704
2699
  try {
2705
2700
  fullData = await window.wsClient.rpc('conv.full', { id: conversationId, chunkLimit: 50 });