oxicode-agent 0.75.0

Agent runtime with tool-calling loop for AI coding assistants
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Mechanical (LLM-free) context compaction strategies.
//!
//! These strategies elide token-heavy regions of the message log without
//! invoking the model. They complement the LLM-driven compactor wired
//! through `oxicode_ai::CompactionManager`.

/// Shake compaction — elide large tool results and code blocks from
/// older context while preserving a recent protect window.
///
/// Ported from omp `packages/agent/src/compaction/shake.ts`.
pub mod shake;