From b391af796833c6e6aff8450a9cbc3e34f461a4c1 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Fri, 27 Feb 2026 23:45:20 -0500 Subject: [PATCH] Register compaction module in lib.rs The compaction.rs module was created and session.rs was updated to use it in the previous commit, but the module was not registered in lib.rs. Add `pub mod compaction;` to complete the extraction. Co-Authored-By: Claude Opus 4.6 (1M context) --- crates/agent/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/agent/src/lib.rs b/crates/agent/src/lib.rs index 7b2b2ed47..18329d027 100644 --- a/crates/agent/src/lib.rs +++ b/crates/agent/src/lib.rs @@ -2,6 +2,7 @@ pub mod docker_env; pub mod cli; +pub mod compaction; pub mod config; pub mod error; pub mod event; @@ -18,6 +19,7 @@ pub mod skills; pub mod provider_profile; pub mod session; pub mod subagent; +pub mod tool_execution; pub mod tool_registry; pub mod tools; pub mod truncation;