Skip to main content

supercode_codex_frontend/
lib.rs

1//! Stock Codex frontend adapters over the canonical Supercode SDK runtime.
2//!
3//! This crate is a removable compatibility envelope. It never creates an
4//! agent, owns a model loop, writes a Codex session, or mutates a source
5//! harness store.
6
7pub mod codex_app_server_v0_144;
8pub mod server;
9
10pub use codex_app_server_v0_144::{
11    AdapterError, CodexAppServerAdapter, CodexCompatibilityMode, CodexConnection,
12    CODEX_CLI_VERSION, PROTOCOL_NAMESPACE,
13};
14pub use server::{
15    CodexBootstrapCredential, CodexBootstrapFile, CodexClientCredential, CodexEndpoint,
16    CodexEndpointHealth, CodexEndpointKind, CodexServerHandle, CredentialError,
17};