diff --git a/crates/tui/src/commands/groups/config/mod.rs b/crates/tui/src/commands/groups/config/mod.rs index f3287333..3c278e62 100644 --- a/crates/tui/src/commands/groups/config/mod.rs +++ b/crates/tui/src/commands/groups/config/mod.rs @@ -31,7 +31,9 @@ impl CommandGroup for ConfigCommands { static CONFIG_INFO: CommandInfo = CommandInfo { name: "config", - aliases: &[], + // /experiments is a discoverable entry to the same view: the Experimental + // section exposes the WhaleFlow, goal, and sub-agent opt-ins (#3182). + aliases: &["experiments", "experimental"], usage: "/config", description_id: MessageId::CmdConfigDescription, }; @@ -140,7 +142,7 @@ pub(in crate::commands) fn dispatch( arg: Option<&str>, ) -> Option { let result = match command { - "config" => config::config_command(app, arg), + "config" | "experiments" | "experimental" => config::config_command(app, arg), "sidebar" => config::sidebar(app, arg), "settings" => config::show_settings(app), "status" => status::status(app),