From 0cbbdd566e4c023f0deaf788ae2c4db565c6b8bf Mon Sep 17 00:00:00 2001 From: Dominic Frye Date: Sat, 7 Feb 2026 10:06:13 -0500 Subject: [PATCH] fix(cli): enable positional options on parent command for passThroughOptions --- src/cli/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/index.ts b/src/cli/index.ts index 4db8791be..90b413be6 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -19,6 +19,7 @@ program .name("oh-my-opencode") .description("The ultimate OpenCode plugin - multi-model orchestration, LSP tools, and more") .version(VERSION, "-v, --version", "Show version number") + .enablePositionalOptions() program .command("install")