Skip to main content

supercode/
lib.rs

1//! Backwards-compatible composition facade for Supercode.
2//!
3//! New integrations should select the narrow package they need:
4//! `supercode-interchange` for session glue, `supercode-reduce` for reversible
5//! token reduction, `supercode-runtime` for provider/runtime primitives, or
6//! `supercode-harness` for the complete native Supercode agent and tool loop.
7//! This crate preserves the historical `supercode` import by re-exporting the
8//! complete harness surface.
9
10#![warn(missing_docs)]
11
12pub use supercode_harness::*;