cmx-core 0.3.0

Embeddable core for installing agent skills across platforms — cmx-aware lockfile tracking, plan/apply installs, version guards
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod clock;
pub mod fakes;
pub mod filesystem;
pub mod git;
pub mod llm;
pub mod real;

pub use clock::Clock;
pub use filesystem::{DirEntry, Filesystem};
pub use git::GitClient;
pub use llm::LlmClient;
#[cfg(feature = "llm")]
pub use real::MojenticLlmClient;
pub use real::{RealFilesystem, RealGitClient, SystemClock};