agentgui 1.0.6 → 1.0.8
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 +1 -1
- package/server.js +7 -1
package/package.json
CHANGED
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
|
-
|
|
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
|
|