From 4b50446ffa3385f8b72a5ced71a1306d28646d02 Mon Sep 17 00:00:00 2001 From: Matthew Zeng Date: Wed, 25 Mar 2026 20:24:06 -0700 Subject: [PATCH] [plugins] Flip flags on. (#15820) - [x] Flip flags on. --- codex-rs/features/src/lib.rs | 8 ++++---- codex-rs/features/src/tests.rs | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/codex-rs/features/src/lib.rs b/codex-rs/features/src/lib.rs index 0aa019cb0..ccde6a5e5 100644 --- a/codex-rs/features/src/lib.rs +++ b/codex-rs/features/src/lib.rs @@ -717,7 +717,7 @@ pub const FEATURES: &[FeatureSpec] = &[ id: Feature::Apps, key: "apps", stage: Stage::Stable, - default_enabled: false, + default_enabled: true, }, FeatureSpec { id: Feature::ToolSearch, @@ -729,13 +729,13 @@ pub const FEATURES: &[FeatureSpec] = &[ id: Feature::ToolSuggest, key: "tool_suggest", stage: Stage::Stable, - default_enabled: false, + default_enabled: true, }, FeatureSpec { id: Feature::Plugins, key: "plugins", stage: Stage::Stable, - default_enabled: false, + default_enabled: true, }, FeatureSpec { id: Feature::ImageGeneration, @@ -787,7 +787,7 @@ pub const FEATURES: &[FeatureSpec] = &[ id: Feature::ToolCallMcpElicitation, key: "tool_call_mcp_elicitation", stage: Stage::Stable, - default_enabled: false, + default_enabled: true, }, FeatureSpec { id: Feature::Personality, diff --git a/codex-rs/features/src/tests.rs b/codex-rs/features/src/tests.rs index 4943a1ccf..ecfa87b41 100644 --- a/codex-rs/features/src/tests.rs +++ b/codex-rs/features/src/tests.rs @@ -115,9 +115,9 @@ fn request_permissions_tool_is_under_development() { } #[test] -fn tool_suggest_is_stable_and_disabled_by_default() { +fn tool_suggest_is_stable_and_enabled_by_default() { assert_eq!(Feature::ToolSuggest.stage(), Stage::Stable); - assert_eq!(Feature::ToolSuggest.default_enabled(), false); + assert_eq!(Feature::ToolSuggest.default_enabled(), true); } #[test] @@ -145,9 +145,9 @@ fn image_generation_is_under_development() { } #[test] -fn tool_call_mcp_elicitation_is_stable_and_disabled_by_default() { +fn tool_call_mcp_elicitation_is_stable_and_enabled_by_default() { assert_eq!(Feature::ToolCallMcpElicitation.stage(), Stage::Stable); - assert_eq!(Feature::ToolCallMcpElicitation.default_enabled(), false); + assert_eq!(Feature::ToolCallMcpElicitation.default_enabled(), true); } #[test]