summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCraig Jellick <[email protected]>2026-01-19 22:38:26 -0700
committerGitHub <[email protected]>2026-01-19 23:38:26 -0600
commit68d1755a9ed49b2bbf29964db295817349025563 (patch)
treea9908a1ec8967fe27a91137cdfe6aa373b150522
parent419004992d57aacab45dd17f6c435fbc12f0b910 (diff)
downloadopencode-68d1755a9ed49b2bbf29964db295817349025563.tar.gz
opencode-68d1755a9ed49b2bbf29964db295817349025563.zip
fix: add space toggle hint to tool selection prompt (#9535)
-rw-r--r--packages/opencode/src/cli/cmd/agent.ts2
1 files changed, 1 insertions, 1 deletions
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,