supercode-reduce 0.4.10

Optional lossless, reversible session reduction for Supercode
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Optional lossless, reversible reduction for coding-agent sessions.
//!
//! This package owns projection, inversion, verification, rehydration, and
//! reduced handoff construction. It depends only on canonical interchange
//! data and never on providers, tools, catalogs, or a native agent loop.

#![warn(missing_docs)]

mod engine;
mod error;

pub use engine::*;
pub use error::{ReductionError, Result};

/// Explicitly named alias for callers that also import another crate's `Result`.
pub type ReductionResult<T> = Result<T>;