From 753821c90fda514ec43ee01b1932ba9626c4138f Mon Sep 17 00:00:00 2001 From: jif-oai Date: Mon, 9 Feb 2026 11:23:59 +0000 Subject: [PATCH] chore: enable shell snapshot (#11172) --- codex-rs/core/src/features.rs | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/codex-rs/core/src/features.rs b/codex-rs/core/src/features.rs index e96507650..7de37e78a 100644 --- a/codex-rs/core/src/features.rs +++ b/codex-rs/core/src/features.rs @@ -414,6 +414,12 @@ pub const FEATURES: &[FeatureSpec] = &[ stage: Stage::Stable, default_enabled: !cfg!(windows), }, + FeatureSpec { + id: Feature::ShellSnapshot, + key: "shell_snapshot", + stage: Stage::Stable, + default_enabled: true, + }, FeatureSpec { id: Feature::WebSearchRequest, key: "web_search_request", @@ -427,16 +433,6 @@ pub const FEATURES: &[FeatureSpec] = &[ default_enabled: false, }, // Experimental program. Rendered in the `/experimental` menu for users. - FeatureSpec { - id: Feature::ShellSnapshot, - key: "shell_snapshot", - stage: Stage::Experimental { - name: "Shell snapshot", - menu_description: "Snapshot your shell environment to avoid re-running login scripts for every command.", - announcement: "NEW! Try shell snapshotting to make your Codex faster. Enable in /experimental!", - }, - default_enabled: false, - }, FeatureSpec { id: Feature::RuntimeMetrics, key: "runtime_metrics",