supercode-codex-frontend 0.4.13

Version-pinned stock Codex app-server compatibility adapter for Supercode SDK runtimes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Stock Codex frontend adapters over the canonical Supercode SDK runtime.
//!
//! This crate is a removable compatibility envelope. It never creates an
//! agent, owns a model loop, writes a Codex session, or mutates a source
//! harness store.

pub mod codex_app_server_v0_144;
pub mod server;

pub use codex_app_server_v0_144::{
    AdapterError, CodexAppServerAdapter, CodexCompatibilityMode, CodexConnection,
    CODEX_CLI_VERSION, PROTOCOL_NAMESPACE,
};
pub use server::{
    CodexBootstrapCredential, CodexBootstrapFile, CodexClientCredential, CodexEndpoint,
    CodexEndpointHealth, CodexEndpointKind, CodexServerHandle, CredentialError,
};