feat(cli): add Channel Common config entry in onboard wizard

Add "⚙️ Configure Channel Common" menu option to allow users to
configure send_progress and send_tool_hints settings through the
interactive onboarding wizard.
This commit is contained in:
chengyongru 2026-03-17 11:38:59 +08:00
parent 57623b70fc
commit 7d4938a840

View File

@ -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":