Skip to main content

codex_ws/
lib.rs

1//! Library support for the `codex-ws` command-line application.
2
3/// Application orchestration for workspace launches.
4pub mod app;
5
6/// Command-line interface definitions.
7pub mod cli;
8
9/// User-level codex-ws configuration.
10pub mod config;
11
12/// Docker sandbox command construction.
13pub mod docker;
14
15/// Workspace manifest parsing and validation.
16pub mod manifest;
17
18/// Provider configuration loading from the local configuration database.
19pub mod provider;
20
21/// Codex Universal runtime language selection.
22pub mod runtime;
23
24/// Saved workspace manifest management.
25pub mod workspace;