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
// Copyright (c) 2024-2026 Nervosys LLC
// SPDX-License-Identifier: AGPL-3.0-only
//! Synchronization Module
//!
//! Provides bidirectional synchronization between CSM and provider-native storage.

pub mod bidirectional;

pub use bidirectional::{
    compute_session_hash, BidirectionalSyncConfig, BidirectionalSyncEngine, ChangeOrigin,
    ChangeType, ConflictStrategy, ConflictType, ConflictVersion, EntityType, ProviderSyncAdapter,
    SessionSyncState, SyncChange, SyncConflict, SyncResult, SyncStatus, VSCodeSyncAdapter,
};