From 6f94a90797f8e65a21d515a0b9d65e4346b79f76 Mon Sep 17 00:00:00 2001 From: xl-openai Date: Thu, 18 Dec 2025 21:57:15 -0800 Subject: [PATCH] Keep skills feature flag default OFF for windows. (#8308) Keep windows OFF first. --- 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 22fd310b9..1b7923341 100644 --- a/codex-rs/core/src/features.rs +++ b/codex-rs/core/src/features.rs @@ -395,7 +395,7 @@ pub const FEATURES: &[FeatureSpec] = &[ id: Feature::Skills, key: "skills", stage: Stage::Experimental, - default_enabled: true, + default_enabled: !cfg!(windows), }, FeatureSpec { id: Feature::Tui2,