Skip to main content

supercode_frontend_tui/
lib.rs

1//! Attachable terminal frontend primitives for SDK-owned Supercode runtimes.
2//!
3//! This crate contains terminal layout, input, and lifecycle mechanics only.
4//! Session continuation, tool execution, persistence, and harness emulation
5//! remain owned by the protocol-neutral SDK runtime. Codex-derived modules are
6//! tracked in `docs/legal/codex-frontend-extraction.toml` and licensed under
7//! Apache-2.0.
8
9pub mod app;
10pub mod composer;
11pub mod foundation;
12mod human;
13pub mod input;
14pub mod runtime;
15pub mod terminal;
16pub mod transcript;