agentgui 1.0.687 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +0 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.687",
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,