Skip to main content

wsx_core/
lib.rs

1//! Composable project, Git worktree, terminal-runtime, hook, and model primitives.
2//!
3//! [`runtime`] defines wsx-owned provider-neutral daemon contracts. Runtime
4//! implementations and vendor adapters depend on these contracts, not vice versa.
5
6pub mod cache;
7pub mod config;
8pub mod git;
9pub mod hooks;
10pub mod integration;
11pub mod model;
12pub mod ops;
13pub mod runtime;