From 38db6e9366601fb4cddc920f2ea13f6683ac5be3 Mon Sep 17 00:00:00 2001 From: Teknium Date: Mon, 23 Feb 2026 22:32:34 +0000 Subject: [PATCH] fix: correct toolset ID mapping in welcome banner - Updated the mapping of unavailable toolsets in the welcome banner from using the internal toolset ID to the toolset name for improved clarity and accuracy in display. --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 1b9d8e71..e26dd797 100755 --- a/cli.py +++ b/cli.py @@ -472,7 +472,7 @@ def build_welcome_banner(console: Console, model: str, cwd: str, tools: List[dic # Also add disabled toolsets so they show in the banner for item in unavailable_toolsets: # Map the internal toolset ID to display name - toolset_id = item["id"] + toolset_id = item["name"] display_name = f"{toolset_id}_tools" if not toolset_id.endswith("_tools") else toolset_id if display_name not in toolsets_dict: toolsets_dict[display_name] = []