chasm-cli 2.0.0

Universal chat session manager - harvest, merge, and analyze AI chat history from VS Code, Cursor, and other editors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
// Copyright (c) 2024-2026 Nervosys LLC
// SPDX-License-Identifier: AGPL-3.0-only
//! Export and import commands

use anyhow::{Context, Result};
use colored::*;
use std::path::Path;

use crate::models::Workspace;
use crate::workspace::{get_workspace_by_hash, get_workspace_by_path};

/// Check if a path has a session file extension (.json or .jsonl)
fn is_session_file(path: &Path) -> bool {
    path.extension()
        .map(|e| e == "json" || e == "jsonl")
        .unwrap_or(false)
}

/// Export chat sessions from a workspace
pub fn export_sessions(destination: &str, hash: Option<&str>, path: Option<&str>) -> Result<()> {
    let workspace = if let Some(h) = hash {
        get_workspace_by_hash(h)?.context(format!("Workspace not found with hash: {}", h))?
    } else if let Some(p) = path {
        get_workspace_by_path(p)?.context(format!("Workspace not found for path: {}", p))?
    } else {
        anyhow::bail!("Must specify either --hash or --path");
    };

    if !workspace.has_chat_sessions {
        println!("No chat sessions to export.");
        return Ok(());
    }

    // Create destination directory
    let dest_path = Path::new(destination);
    std::fs::create_dir_all(dest_path)?;

    // Copy all session files
    let mut exported_count = 0;
    for entry in std::fs::read_dir(&workspace.chat_sessions_path)? {
        let entry = entry?;
        let src_path = entry.path();

        if is_session_file(&src_path) {
            let dest_file = dest_path.join(entry.file_name());
            std::fs::copy(&src_path, &dest_file)?;
            exported_count += 1;
        }
    }

    println!(
        "{} Exported {} chat session(s) to {}",
        "[OK]".green(),
        exported_count,
        destination
    );

    Ok(())
}

/// Export chat sessions from multiple project paths (batch operation)
pub fn export_batch(destination: &str, project_paths: &[String]) -> Result<()> {
    let dest_base = Path::new(destination);
    std::fs::create_dir_all(dest_base)?;

    let mut total_exported = 0;
    let mut total_projects = 0;
    let mut projects_with_sessions = 0;

    println!(
        "\n{} Batch Exporting Sessions",
        "=".repeat(60).dimmed()
    );
    println!("{}", "=".repeat(60).dimmed());

    for project_path in project_paths {
        total_projects += 1;
        let project_name = Path::new(project_path)
            .file_name()
            .map(|n| n.to_string_lossy().to_string())
            .unwrap_or_else(|| "unknown".to_string());

        print!("  {} {} ... ", "→".blue(), project_name);

        match get_workspace_by_path(project_path) {
            Ok(Some(workspace)) => {
                if !workspace.has_chat_sessions {
                    println!("{}", "no sessions".dimmed());
                    continue;
                }

                // Create project-specific subdirectory
                let project_dest = dest_base.join(&project_name);
                std::fs::create_dir_all(&project_dest)?;

                // Copy all session files
                let mut exported_count = 0;
                for entry in std::fs::read_dir(&workspace.chat_sessions_path)? {
                    let entry = entry?;
                    let src_path = entry.path();

                    if is_session_file(&src_path) {
                        let dest_file = project_dest.join(entry.file_name());
                        std::fs::copy(&src_path, &dest_file)?;
                        exported_count += 1;
                    }
                }

                if exported_count > 0 {
                    projects_with_sessions += 1;
                    total_exported += exported_count;
                    println!("{} {} session(s)", "[OK]".green(), exported_count);
                } else {
                    println!("{}", "no sessions".dimmed());
                }
            }
            Ok(None) => {
                println!("{}", "workspace not found".yellow());
            }
            Err(e) => {
                println!("{} {}", "[ERR]".red(), e);
            }
        }
    }

    println!("{}", "=".repeat(60).dimmed());
    println!(
        "\n{} Exported {} session(s) from {}/{} project(s) to {}",
        "[DONE]".green().bold(),
        total_exported,
        projects_with_sessions,
        total_projects,
        destination
    );

    Ok(())
}

/// Import chat sessions into a workspace
pub fn import_sessions(
    source: &str,
    hash: Option<&str>,
    path: Option<&str>,
    force: bool,
) -> Result<()> {
    let src_path = Path::new(source);
    if !src_path.exists() {
        anyhow::bail!("Source path not found: {}", source);
    }

    let workspace = if let Some(h) = hash {
        get_workspace_by_hash(h)?.context(format!("Workspace not found with hash: {}", h))?
    } else if let Some(p) = path {
        get_workspace_by_path(p)?.context(format!("Workspace not found for path: {}", p))?
    } else {
        anyhow::bail!("Must specify either --hash or --path");
    };

    // Create chatSessions directory if it doesn't exist
    std::fs::create_dir_all(&workspace.chat_sessions_path)?;

    // Import all JSON files
    let mut imported_count = 0;
    let mut skipped_count = 0;

    for entry in std::fs::read_dir(src_path)? {
        let entry = entry?;
        let src_file = entry.path();

        if is_session_file(&src_file) {
            let dest_file = workspace.chat_sessions_path.join(entry.file_name());

            if dest_file.exists() && !force {
                skipped_count += 1;
            } else {
                std::fs::copy(&src_file, &dest_file)?;
                imported_count += 1;
            }
        }
    }

    println!(
        "{} Imported {} chat session(s)",
        "[OK]".green(),
        imported_count
    );
    if skipped_count > 0 {
        println!(
            "{} Skipped {} existing session(s). Use --force to overwrite.",
            "[!]".yellow(),
            skipped_count
        );
    }

    Ok(())
}

/// Move chat sessions from one workspace to another (by path lookup)
#[allow(dead_code)]
pub fn move_sessions(source_hash: &str, target_path: &str) -> Result<()> {
    let source_ws = get_workspace_by_hash(source_hash)?
        .context(format!("Source workspace not found: {}", source_hash))?;

    let target_ws = get_workspace_by_path(target_path)?.context(format!(
        "Target workspace not found for path: {}",
        target_path
    ))?;

    // Prevent moving to self
    if source_ws.workspace_path == target_ws.workspace_path {
        println!(
            "{} Source and target are the same workspace",
            "[!]".yellow()
        );
        return Ok(());
    }

    move_sessions_internal(&source_ws, &target_ws, target_path)
}

/// Move chat sessions from one workspace to another (with explicit target workspace)
fn move_sessions_to_workspace(source_ws: &Workspace, target_ws: &Workspace) -> Result<()> {
    let target_path: &str = target_ws
        .project_path
        .as_deref()
        .unwrap_or("target workspace");
    move_sessions_internal(source_ws, target_ws, target_path)
}

/// Internal function to move sessions between workspaces
fn move_sessions_internal(
    source_ws: &Workspace,
    target_ws: &Workspace,
    display_path: &str,
) -> Result<()> {
    if !source_ws.has_chat_sessions {
        println!("No chat sessions to move.");
        return Ok(());
    }

    // Prevent moving to self
    if source_ws.workspace_path == target_ws.workspace_path {
        println!(
            "{} Source and target are the same workspace",
            "[!]".yellow()
        );
        return Ok(());
    }

    // Create chatSessions directory in target if needed
    std::fs::create_dir_all(&target_ws.chat_sessions_path)?;

    // Move all session files
    let mut moved_count = 0;
    let mut skipped_count = 0;
    for entry in std::fs::read_dir(&source_ws.chat_sessions_path)? {
        let entry = entry?;
        let src_file = entry.path();

        if is_session_file(&src_file) {
            let dest_file = target_ws.chat_sessions_path.join(entry.file_name());

            // Skip if file already exists with same name (don't overwrite)
            if dest_file.exists() {
                skipped_count += 1;
                continue;
            }

            std::fs::rename(&src_file, &dest_file)?;
            moved_count += 1;
        }
    }

    println!(
        "{} Moved {} chat session(s) to {}",
        "[OK]".green(),
        moved_count,
        display_path
    );

    if skipped_count > 0 {
        println!(
            "{} Skipped {} session(s) that already exist in target",
            "[!]".yellow(),
            skipped_count
        );
    }

    Ok(())
}

/// Export specific sessions by ID
pub fn export_specific_sessions(
    destination: &str,
    session_ids: &[String],
    project_path: Option<&str>,
) -> Result<()> {
    use crate::workspace::{discover_workspaces, get_chat_sessions_from_workspace, normalize_path};

    let dest_path = Path::new(destination);
    std::fs::create_dir_all(dest_path)?;

    let workspaces = discover_workspaces()?;

    // Filter workspaces by project path if provided
    let filtered: Vec<_> = if let Some(path) = project_path {
        let normalized = normalize_path(path);
        workspaces
            .into_iter()
            .filter(|ws| {
                ws.project_path
                    .as_ref()
                    .map(|p| normalize_path(p) == normalized)
                    .unwrap_or(false)
            })
            .collect()
    } else {
        workspaces
    };

    let normalized_ids: Vec<String> = session_ids
        .iter()
        .flat_map(|s| s.split(',').map(|p| p.trim().to_lowercase()))
        .filter(|s| !s.is_empty())
        .collect();

    let mut exported_count = 0;
    let mut found_ids = Vec::new();

    for ws in filtered {
        if !ws.has_chat_sessions {
            continue;
        }

        let sessions = get_chat_sessions_from_workspace(&ws.workspace_path)?;

        for session in sessions {
            let session_id = session.session.session_id.clone().unwrap_or_else(|| {
                session
                    .path
                    .file_stem()
                    .map(|s| s.to_string_lossy().to_string())
                    .unwrap_or_default()
            });

            let matches = normalized_ids.iter().any(|req_id| {
                session_id.to_lowercase().contains(req_id)
                    || req_id.contains(&session_id.to_lowercase())
            });

            if matches && !found_ids.contains(&session_id) {
                let filename = session
                    .path
                    .file_name()
                    .map(|n| n.to_string_lossy().to_string())
                    .unwrap_or_default();

                let dest_file = dest_path.join(&filename);
                std::fs::copy(&session.path, &dest_file)?;
                exported_count += 1;
                found_ids.push(session_id);
                println!(
                    "   {} Exported: {}",
                    "[OK]".green(),
                    session.session.title()
                );
            }
        }
    }

    println!(
        "\n{} Exported {} session(s) to {}",
        "[OK]".green().bold(),
        exported_count,
        destination
    );

    Ok(())
}

/// Import specific session files
pub fn import_specific_sessions(
    session_files: &[String],
    target_path: Option<&str>,
    force: bool,
) -> Result<()> {
    let target_ws = if let Some(path) = target_path {
        get_workspace_by_path(path)?.context(format!("Workspace not found for path: {}", path))?
    } else {
        let cwd = std::env::current_dir()?;
        get_workspace_by_path(cwd.to_str().unwrap_or(""))?
            .context("Current directory is not a VS Code workspace")?
    };

    std::fs::create_dir_all(&target_ws.chat_sessions_path)?;

    let mut imported_count = 0;
    let mut skipped_count = 0;

    for file_path in session_files {
        let src_path = Path::new(file_path);

        if !src_path.exists() {
            println!("{} File not found: {}", "[!]".yellow(), file_path);
            continue;
        }

        let filename = src_path
            .file_name()
            .map(|n| n.to_string_lossy().to_string())
            .unwrap_or_default();

        let dest_file = target_ws.chat_sessions_path.join(&filename);

        if dest_file.exists() && !force {
            println!("   {} Skipping (exists): {}", "[!]".yellow(), filename);
            skipped_count += 1;
        } else {
            std::fs::copy(src_path, &dest_file)?;
            imported_count += 1;
            println!("   {} Imported: {}", "[OK]".green(), filename);
        }
    }

    println!(
        "\n{} Imported {} session(s)",
        "[OK]".green().bold(),
        imported_count
    );
    if skipped_count > 0 {
        println!(
            "{} Skipped {} existing. Use --force to overwrite.",
            "[!]".yellow(),
            skipped_count
        );
    }

    Ok(())
}

/// Move all sessions from one workspace to another (by hash)
pub fn move_workspace(source_hash: &str, target: &str) -> Result<()> {
    // Get source workspace
    let source_ws = get_workspace_by_hash(source_hash)?
        .context(format!("Source workspace not found: {}", source_hash))?;

    // Try target as hash first, then as path
    // This prevents ambiguity when multiple workspaces share the same path
    let target_ws = get_workspace_by_hash(target)?
        .or_else(|| get_workspace_by_path(target).ok().flatten())
        .context(format!("Target workspace not found: {}", target))?;

    move_sessions_to_workspace(&source_ws, &target_ws)
}

/// Move specific sessions by ID
pub fn move_specific_sessions(session_ids: &[String], target_path: &str) -> Result<()> {
    use crate::workspace::{discover_workspaces, get_chat_sessions_from_workspace, normalize_path};

    let target_ws = get_workspace_by_path(target_path)?
        .context(format!("Target workspace not found: {}", target_path))?;

    std::fs::create_dir_all(&target_ws.chat_sessions_path)?;

    let workspaces = discover_workspaces()?;

    let normalized_ids: Vec<String> = session_ids
        .iter()
        .flat_map(|s| s.split(',').map(|p| p.trim().to_lowercase()))
        .filter(|s| !s.is_empty())
        .collect();

    let mut moved_count = 0;
    let mut found_ids = Vec::new();

    for ws in workspaces {
        if !ws.has_chat_sessions {
            continue;
        }

        // Skip target workspace
        if ws
            .project_path
            .as_ref()
            .map(|p| normalize_path(p) == normalize_path(target_path))
            .unwrap_or(false)
        {
            continue;
        }

        let sessions = get_chat_sessions_from_workspace(&ws.workspace_path)?;

        for session in sessions {
            let session_id = session.session.session_id.clone().unwrap_or_else(|| {
                session
                    .path
                    .file_stem()
                    .map(|s| s.to_string_lossy().to_string())
                    .unwrap_or_default()
            });

            let matches = normalized_ids.iter().any(|req_id| {
                session_id.to_lowercase().contains(req_id)
                    || req_id.contains(&session_id.to_lowercase())
            });

            if matches && !found_ids.contains(&session_id) {
                let filename = session
                    .path
                    .file_name()
                    .map(|n| n.to_string_lossy().to_string())
                    .unwrap_or_default();

                let dest_file = target_ws.chat_sessions_path.join(&filename);
                std::fs::rename(&session.path, &dest_file)?;
                moved_count += 1;
                found_ids.push(session_id);
                println!("   {} Moved: {}", "[OK]".green(), session.session.title());
            }
        }
    }

    println!(
        "\n{} Moved {} session(s) to {}",
        "[OK]".green().bold(),
        moved_count,
        target_path
    );

    Ok(())
}

/// Move sessions from one path to another
pub fn move_by_path(source_path: &str, target_path: &str) -> Result<()> {
    let source_ws = get_workspace_by_path(source_path)?
        .context(format!("Source workspace not found: {}", source_path))?;

    let target_ws = get_workspace_by_path(target_path)?
        .context(format!("Target workspace not found: {}", target_path))?;

    if !source_ws.has_chat_sessions {
        println!("No chat sessions to move.");
        return Ok(());
    }

    std::fs::create_dir_all(&target_ws.chat_sessions_path)?;

    let mut moved_count = 0;
    for entry in std::fs::read_dir(&source_ws.chat_sessions_path)? {
        let entry = entry?;
        let src_file = entry.path();

        if is_session_file(&src_file) {
            let dest_file = target_ws.chat_sessions_path.join(entry.file_name());
            std::fs::rename(&src_file, &dest_file)?;
            moved_count += 1;
        }
    }

    println!(
        "{} Moved {} chat session(s) from {} to {}",
        "[OK]".green(),
        moved_count,
        source_path,
        target_path
    );

    Ok(())
}