[plugins] Flip the flags. (#15713)

- [x] Flip the `plugins` and `apps` flags.
This commit is contained in:
Matthew Zeng
2026-03-24 20:31:21 -07:00
committed by GitHub
parent fece9ce745
commit 0bff38c54a
3 changed files with 13 additions and 13 deletions

View File

@@ -714,12 +714,8 @@ pub const FEATURES: &[FeatureSpec] = &[
FeatureSpec {
id: Feature::Apps,
key: "apps",
stage: Stage::Experimental {
name: "Apps",
menu_description: "Use a connected ChatGPT App using \"$\". Install Apps via /apps command. Restart Codex after enabling.",
announcement: "NEW: Use ChatGPT Apps (Connectors) in Codex via $ mentions. Enable in /experimental and restart Codex!",
},
default_enabled: false,
stage: Stage::Stable,
default_enabled: true,
},
FeatureSpec {
id: Feature::ToolSuggest,
@@ -730,8 +726,8 @@ pub const FEATURES: &[FeatureSpec] = &[
FeatureSpec {
id: Feature::Plugins,
key: "plugins",
stage: Stage::UnderDevelopment,
default_enabled: false,
stage: Stage::Stable,
default_enabled: true,
},
FeatureSpec {
id: Feature::ImageGeneration,