chasm-cli 2.0.0

Universal chat session manager - harvest, merge, and analyze AI chat history from VS Code, Cursor, and other editors
Documentation
// Copyright (c) 2024-2026 Nervosys LLC
// SPDX-License-Identifier: AGPL-3.0-only
//! Command implementations

mod agency;
mod detect;
mod doctor;
mod export_import;
mod git;
mod harvest;
mod history;
mod inspect;
mod migration;
mod providers;
mod recover;
mod register;
mod run;
mod schema;
mod shard;
mod telemetry;
mod watch;
mod workspace_cmds;

pub use agency::*;
pub use detect::*;
pub use doctor::*;
pub use export_import::*;
pub use git::*;
pub use harvest::*;
pub use history::*;
pub use inspect::*;
pub use migration::*;
pub use providers::*;
pub use recover::*;
pub use register::*;
pub use run::*;
pub use schema::*;
pub use shard::*;
pub use telemetry::*;
pub use watch::*;
pub use workspace_cmds::*;