Files
thedotmack__claude-mem/scripts/import-memories.ts
T
Alex Newman 44c4de0a4c fix(settings): normalize localhost worker host to 127.0.0.1 (rehost #3436) (#4041)
* fix(settings): normalize localhost worker host to 127.0.0.1

Windows resolvers pick IPv6-first for localhost while the worker binds
a single family, so hooks can hang until the 30s API timeout. Normalize
localhost to 127.0.0.1 at SettingsDefaultsManager and stop raw
process.env bypasses in scripts.

Rehost of #3436. Closes #2992.

Co-authored-by: Alex Newman <thedotmack@users.noreply.github.com>

* fix(settings): point export-memories tests at normalized 127.0.0.1

The localhost→127.0.0.1 host normalization made the export script hit
127.0.0.1, so mocks still listening on localhost returned 500.

Co-authored-by: Alex Newman <thedotmack@users.noreply.github.com>

---------

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: Alex Newman <thedotmack@users.noreply.github.com>
2026-09-11 09:42:47 +00:00

85 lines
3.1 KiB
JavaScript

#!/usr/bin/env node
import { existsSync, readFileSync } from 'fs';
import { SettingsDefaultsManager } from '../src/shared/SettingsDefaultsManager.js';
import { USER_SETTINGS_PATH } from '../src/shared/paths.js';
const workerSettings = SettingsDefaultsManager.loadFromFile(USER_SETTINGS_PATH);
// loadFromFile already applies env overrides and normalizes 'localhost' to
// 127.0.0.1 (#2992); a raw process.env read here would bypass both.
const WORKER_HOST = workerSettings.CLAUDE_MEM_WORKER_HOST;
const WORKER_PORT = process.env.CLAUDE_MEM_WORKER_PORT || workerSettings.CLAUDE_MEM_WORKER_PORT;
const WORKER_URL = `http://${WORKER_HOST}:${WORKER_PORT}`;
async function importMemories(inputFile: string) {
if (!existsSync(inputFile)) {
console.error(`❌ Input file not found: ${inputFile}`);
process.exit(1);
}
const exportData = JSON.parse(readFileSync(inputFile, 'utf-8'));
console.log(`📦 Import file: ${inputFile}`);
console.log(`📅 Exported: ${exportData.exportedAt}`);
console.log(`🔍 Query: "${exportData.query}"`);
console.log(`📊 Contains:`);
console.log(`${exportData.totalObservations} observations`);
console.log(`${exportData.totalSessions} sessions`);
console.log(`${exportData.totalSummaries} summaries`);
console.log(`${exportData.totalPrompts} prompts`);
console.log('');
try {
const healthCheck = await fetch(`${WORKER_URL}/api/stats`);
if (!healthCheck.ok) {
throw new Error('Worker not responding');
}
} catch (error) {
console.error(`❌ Worker not running at ${WORKER_URL}`);
console.error(' Please ensure the claude-mem worker is running.');
process.exit(1);
}
console.log('🔄 Importing via worker API...');
const response = await fetch(`${WORKER_URL}/api/import`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
sessions: exportData.sessions || [],
summaries: exportData.summaries || [],
observations: exportData.observations || [],
prompts: exportData.prompts || []
})
});
if (!response.ok) {
const errorText = await response.text();
console.error(`❌ Import failed: ${response.status} ${response.statusText}`);
console.error(` ${errorText}`);
process.exit(1);
}
const result = await response.json();
const stats = result.stats;
console.log('\n✅ Import complete!');
console.log('📊 Summary:');
console.log(` Sessions: ${stats.sessionsImported} imported, ${stats.sessionsSkipped} skipped`);
console.log(` Summaries: ${stats.summariesImported} imported, ${stats.summariesSkipped} skipped`);
console.log(` Observations: ${stats.observationsImported} imported, ${stats.observationsSkipped} skipped`);
console.log(` Prompts: ${stats.promptsImported} imported, ${stats.promptsSkipped} skipped`);
}
const args = process.argv.slice(2);
if (args.length < 1) {
console.error('Usage: npx tsx scripts/import-memories.ts <input-file>');
console.error('Example: npx tsx scripts/import-memories.ts windows-memories.json');
process.exit(1);
}
const [inputFile] = args;
importMemories(inputFile);