carryctx 0.0.3

Persistent project context for coding agents
// Application use cases naturally pass many parameters for command arguments.
// Suppressing this lint across the module to avoid per-function annotations.
#![allow(clippy::too_many_arguments)]

pub mod agent;
pub mod checkpoint;
pub mod collaboration;
pub mod config_cmd;
pub mod continuity;
pub mod doctor;
pub mod event;
pub mod init;
pub mod progress;
pub mod project_mgmt;
pub mod runtime;
pub mod session;
pub mod skill;
pub mod task;
pub mod worktree;