From 68d1755a9ed49b2bbf29964db295817349025563 Mon Sep 17 00:00:00 2001 From: Craig Jellick Date: Mon, 19 Jan 2026 22:38:26 -0700 Subject: [PATCH] fix: add space toggle hint to tool selection prompt (#9535) --- packages/opencode/src/cli/cmd/agent.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/cli/cmd/agent.ts b/packages/opencode/src/cli/cmd/agent.ts index b57de0ae4..e5da9fdb3 100644 --- a/packages/opencode/src/cli/cmd/agent.ts +++ b/packages/opencode/src/cli/cmd/agent.ts @@ -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,