agentgui 1.0.7 → 1.0.9

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 +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -425,7 +425,13 @@ function onServerReady() {
425
425
  // Auto-import Claude Code conversations
426
426
  const imported = queries.importClaudeCodeConversations();
427
427
  if (imported.length > 0) {
428
- console.log(`Auto-imported ${imported.filter(i => i.status === 'imported').length} Claude Code conversations`);
428
+ const importedCount = imported.filter(i => i.status === 'imported').length;
429
+ const skippedCount = imported.filter(i => i.status === 'skipped').length;
430
+ if (importedCount > 0) {
431
+ console.log(`Auto-imported ${importedCount} new Claude Code conversations (${skippedCount} already imported)`);
432
+ } else if (skippedCount > 0) {
433
+ console.log(`Claude Code conversations ready (${skippedCount} already imported)`);
434
+ }
429
435
  }
430
436
  }
431
437