fix: add space toggle hint to tool selection prompt (#9535)

This commit is contained in:
Craig Jellick
2026-01-19 22:38:26 -07:00
committed by GitHub
parent 419004992d
commit 68d1755a9e

View File

@@ -134,7 +134,7 @@ const AgentCreateCommand = cmd({
selectedTools = cliTools ? cliTools.split(",").map((t) => t.trim()) : AVAILABLE_TOOLS
} else {
const result = await prompts.multiselect({
message: "Select tools to enable",
message: "Select tools to enable (Space to toggle)",
options: AVAILABLE_TOOLS.map((tool) => ({
label: tool,
value: tool,