From cac0a6a29d1060877c588ba266835c06f4c45e3c Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Tue, 18 Nov 2025 18:21:57 -0800 Subject: [PATCH] Remote compaction on by-default (#6866) --- codex-rs/core/src/features.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/core/src/features.rs b/codex-rs/core/src/features.rs index 5f579defd..a3457e363 100644 --- a/codex-rs/core/src/features.rs +++ b/codex-rs/core/src/features.rs @@ -313,7 +313,7 @@ pub const FEATURES: &[FeatureSpec] = &[ id: Feature::RemoteCompaction, key: "remote_compaction", stage: Stage::Experimental, - default_enabled: false, + default_enabled: true, }, FeatureSpec { id: Feature::ParallelToolCalls,