codex-multi-workspace 0.1.0

Run Codex CLI in Docker across saved single-folder or multi-folder workspaces.
Documentation
//! Library support for the `codex-ws` command-line application.

/// Application orchestration for workspace launches.
pub mod app;

/// Command-line interface definitions.
pub mod cli;

/// Docker sandbox command construction.
pub mod docker;

/// Workspace manifest parsing and validation.
pub mod manifest;

/// Provider configuration loading from the local configuration database.
pub mod provider;

/// Codex Universal runtime language selection.
pub mod runtime;

/// Saved workspace manifest management.
pub mod workspace;