From 7d4938a8408ea2a21f476bcd80640805110fbba3 Mon Sep 17 00:00:00 2001 From: chengyongru Date: Tue, 17 Mar 2026 11:38:59 +0800 Subject: [PATCH] feat(cli): add Channel Common config entry in onboard wizard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add "⚙️ Configure Channel Common" menu option to allow users to configure send_progress and send_tool_hints settings through the interactive onboarding wizard. --- nanobot/cli/onboard_wizard.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nanobot/cli/onboard_wizard.py b/nanobot/cli/onboard_wizard.py index 3d6809831..4f531c433 100644 --- a/nanobot/cli/onboard_wizard.py +++ b/nanobot/cli/onboard_wizard.py @@ -956,6 +956,7 @@ def run_onboard() -> Config: choices=[ "🔌 Configure LLM Provider", "💬 Configure Chat Channel", + "⚙️ Configure Channel Common", "🤖 Configure Agent Settings", "🌐 Configure Gateway", "🔧 Configure Tools", @@ -969,6 +970,8 @@ def run_onboard() -> Config: _configure_providers(config) elif answer == "💬 Configure Chat Channel": _configure_channels(config) + elif answer == "⚙️ Configure Channel Common": + _configure_general_settings(config, "Channel Common") elif answer == "🤖 Configure Agent Settings": _configure_agents(config) elif answer == "🌐 Configure Gateway":