4e7ed75fa9
Addressed all 6 bugs identified in code reviews: CRITICAL FIXES: 1. SessionStore.ts: Fixed concepts filter bug - removed empty params.push() that was breaking SQL parameter alignment (line 849) 2. import-memories.ts: Removed worker_port and prompt_counter fields from sdk_sessions insert to fix schema mismatch with fresh databases 3. export-memories.ts: Fixed hardcoded port - now reads from settings via SettingsDefaultsManager.loadFromFile() HIGH PRIORITY: 4. export-memories.ts: Added database existence check with clear error message before opening database connection 5. export-memories.ts: Fixed variable shadowing - renamed local 'query' variable to 'sessionQuery' (line 90) MEDIUM PRIORITY: 6. export-memories.ts: Improved type safety - added ObservationRecord, SdkSessionRecord, SessionSummaryRecord, UserPromptRecord interfaces All fixes tested and verified: - Export script successfully exports with project filtering - Import script works on existing database with duplicate prevention - Port configuration read from settings.json - Type safety improvements prevent compile-time errors 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
208 lines
6.6 KiB
JavaScript
208 lines
6.6 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Export memories matching a search query to a portable JSON format
|
|
* Usage: npx tsx scripts/export-memories.ts <query> <output-file> [--project=name]
|
|
* Example: npx tsx scripts/export-memories.ts "windows" windows-memories.json --project=claude-mem
|
|
*/
|
|
|
|
import Database from 'better-sqlite3';
|
|
import { existsSync, writeFileSync } from 'fs';
|
|
import { homedir } from 'os';
|
|
import { join } from 'path';
|
|
import { SettingsDefaultsManager } from '../src/shared/SettingsDefaultsManager';
|
|
|
|
interface ObservationRecord {
|
|
id: number;
|
|
sdk_session_id: string;
|
|
project: string;
|
|
text: string | null;
|
|
type: string;
|
|
title: string;
|
|
subtitle: string | null;
|
|
facts: string | null;
|
|
narrative: string | null;
|
|
concepts: string | null;
|
|
files_read: string | null;
|
|
files_modified: string | null;
|
|
prompt_number: number;
|
|
discovery_tokens: number | null;
|
|
created_at: string;
|
|
created_at_epoch: number;
|
|
}
|
|
|
|
interface SdkSessionRecord {
|
|
id: number;
|
|
claude_session_id: string;
|
|
sdk_session_id: string;
|
|
project: string;
|
|
user_prompt: string;
|
|
started_at: string;
|
|
started_at_epoch: number;
|
|
completed_at: string | null;
|
|
completed_at_epoch: number | null;
|
|
status: string;
|
|
}
|
|
|
|
interface SessionSummaryRecord {
|
|
id: number;
|
|
sdk_session_id: string;
|
|
project: string;
|
|
request: string | null;
|
|
investigated: string | null;
|
|
learned: string | null;
|
|
completed: string | null;
|
|
next_steps: string | null;
|
|
files_read: string | null;
|
|
files_edited: string | null;
|
|
notes: string | null;
|
|
prompt_number: number;
|
|
discovery_tokens: number | null;
|
|
created_at: string;
|
|
created_at_epoch: number;
|
|
}
|
|
|
|
interface UserPromptRecord {
|
|
id: number;
|
|
claude_session_id: string;
|
|
prompt_number: number;
|
|
prompt_text: string;
|
|
created_at: string;
|
|
created_at_epoch: number;
|
|
}
|
|
|
|
interface ExportData {
|
|
exportedAt: string;
|
|
exportedAtEpoch: number;
|
|
query: string;
|
|
project?: string;
|
|
totalObservations: number;
|
|
totalSessions: number;
|
|
totalSummaries: number;
|
|
totalPrompts: number;
|
|
observations: ObservationRecord[];
|
|
sessions: SdkSessionRecord[];
|
|
summaries: SessionSummaryRecord[];
|
|
prompts: UserPromptRecord[];
|
|
}
|
|
|
|
async function exportMemories(query: string, outputFile: string, project?: string) {
|
|
try {
|
|
// Read port from settings
|
|
const settings = SettingsDefaultsManager.loadFromFile(join(homedir(), '.claude-mem', 'settings.json'));
|
|
const port = parseInt(settings.CLAUDE_MEM_WORKER_PORT, 10);
|
|
const baseUrl = `http://localhost:${port}`;
|
|
|
|
console.log(`🔍 Searching for: "${query}"${project ? ` (project: ${project})` : ' (all projects)'}`);
|
|
|
|
// Build query params - use format=json for raw data
|
|
const params = new URLSearchParams({
|
|
query,
|
|
format: 'json',
|
|
limit: '999999'
|
|
});
|
|
if (project) params.set('project', project);
|
|
|
|
// Unified search - gets all result types using hybrid search
|
|
console.log('📡 Fetching all memories via hybrid search...');
|
|
const searchResponse = await fetch(`${baseUrl}/api/search?${params.toString()}`);
|
|
if (!searchResponse.ok) {
|
|
throw new Error(`Failed to search: ${searchResponse.status} ${searchResponse.statusText}`);
|
|
}
|
|
const searchData = await searchResponse.json();
|
|
|
|
const observations: ObservationRecord[] = searchData.observations || [];
|
|
const summaries: SessionSummaryRecord[] = searchData.sessions || [];
|
|
const prompts: UserPromptRecord[] = searchData.prompts || [];
|
|
|
|
console.log(`✅ Found ${observations.length} observations`);
|
|
console.log(`✅ Found ${summaries.length} session summaries`);
|
|
console.log(`✅ Found ${prompts.length} user prompts`);
|
|
|
|
// Get unique SDK session IDs from observations and summaries
|
|
const sdkSessionIds = new Set<string>();
|
|
observations.forEach((o) => {
|
|
if (o.sdk_session_id) sdkSessionIds.add(o.sdk_session_id);
|
|
});
|
|
summaries.forEach((s) => {
|
|
if (s.sdk_session_id) sdkSessionIds.add(s.sdk_session_id);
|
|
});
|
|
|
|
// Get SDK sessions metadata from database
|
|
// (We need this because the API doesn't expose sdk_sessions table directly)
|
|
console.log('📡 Fetching SDK sessions metadata...');
|
|
const sessions: SdkSessionRecord[] = [];
|
|
if (sdkSessionIds.size > 0) {
|
|
// Read directly from database for sdk_sessions table
|
|
const Database = (await import('better-sqlite3')).default;
|
|
const dbPath = join(homedir(), '.claude-mem', 'claude-mem.db');
|
|
|
|
if (!existsSync(dbPath)) {
|
|
console.error(`❌ Database not found at: ${dbPath}`);
|
|
console.error('💡 Has claude-mem been initialized? Try running a session first.');
|
|
process.exit(1);
|
|
}
|
|
|
|
const db = new Database(dbPath, { readonly: true });
|
|
|
|
try {
|
|
const placeholders = Array.from(sdkSessionIds).map(() => '?').join(',');
|
|
const sessionQuery = `
|
|
SELECT * FROM sdk_sessions
|
|
WHERE sdk_session_id IN (${placeholders})
|
|
ORDER BY started_at_epoch DESC
|
|
`;
|
|
sessions.push(...db.prepare(sessionQuery).all(...Array.from(sdkSessionIds)));
|
|
} finally {
|
|
db.close();
|
|
}
|
|
}
|
|
console.log(`✅ Found ${sessions.length} SDK sessions`);
|
|
|
|
// Create export data
|
|
const exportData: ExportData = {
|
|
exportedAt: new Date().toISOString(),
|
|
exportedAtEpoch: Date.now(),
|
|
query,
|
|
project,
|
|
totalObservations: observations.length,
|
|
totalSessions: sessions.length,
|
|
totalSummaries: summaries.length,
|
|
totalPrompts: prompts.length,
|
|
observations,
|
|
sessions,
|
|
summaries,
|
|
prompts
|
|
};
|
|
|
|
// Write to file
|
|
writeFileSync(outputFile, JSON.stringify(exportData, null, 2));
|
|
|
|
console.log(`\n📦 Export complete!`);
|
|
console.log(`📄 Output: ${outputFile}`);
|
|
console.log(`📊 Stats:`);
|
|
console.log(` • ${exportData.totalObservations} observations`);
|
|
console.log(` • ${exportData.totalSessions} sessions`);
|
|
console.log(` • ${exportData.totalSummaries} summaries`);
|
|
console.log(` • ${exportData.totalPrompts} prompts`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ Export failed:', error);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
// CLI interface
|
|
const args = process.argv.slice(2);
|
|
if (args.length < 2) {
|
|
console.error('Usage: npx tsx scripts/export-memories.ts <query> <output-file> [--project=name]');
|
|
console.error('Example: npx tsx scripts/export-memories.ts "windows" windows-memories.json --project=claude-mem');
|
|
console.error(' npx tsx scripts/export-memories.ts "authentication" auth.json');
|
|
process.exit(1);
|
|
}
|
|
|
|
// Parse arguments
|
|
const [query, outputFile, ...flags] = args;
|
|
const project = flags.find(f => f.startsWith('--project='))?.split('=')[1];
|
|
|
|
exportMemories(query, outputFile, project);
|