From fddee936ae93571a1e9b1efd497545e3105704fa Mon Sep 17 00:00:00 2001 From: jif-oai Date: Mon, 9 Feb 2026 10:21:30 +0000 Subject: [PATCH] nit: enable shell snapshot --- 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 e965076504f..7de37e78ad3 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",