From ed25ed391aa623cc666f32378da88075a201f2de Mon Sep 17 00:00:00 2001 From: jif-oai Date: Fri, 31 Oct 2025 15:11:37 +0000 Subject: [PATCH] Enable ghost_commit feature by default --- 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 f6cec4a5ea..ba829b7203 100644 --- a/codex-rs/core/src/features.rs +++ b/codex-rs/core/src/features.rs @@ -292,7 +292,7 @@ pub const FEATURES: &[FeatureSpec] = &[ id: Feature::GhostCommit, key: "ghost_commit", stage: Stage::Experimental, - default_enabled: false, + default_enabled: true, }, FeatureSpec { id: Feature::WindowsSandbox,