prism-mcp-server 4.6.1 → 5.2.0

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.
@@ -0,0 +1,10 @@
1
+ import { importHistory } from './universalImporter.js';
2
+ async function test() {
3
+ const claudePath = '/tmp/sample_claude_history.jsonl';
4
+ const geminiPath = '/tmp/sample_gemini_history.json';
5
+ console.log('--- TEST 1: Claude JSONL (Dry Run) ---');
6
+ await importHistory(claudePath, { format: 'claude-jsonl', dryRun: true, verbose: true });
7
+ console.log('\n--- TEST 2: Gemini JSON (Dry Run) ---');
8
+ await importHistory(geminiPath, { format: 'gemini-json', dryRun: true, verbose: true, projectId: 'gemini-test' });
9
+ }
10
+ test().catch(console.error);