From e8a2632319c7570c43a30478ad2df36f0f757859 Mon Sep 17 00:00:00 2001 From: cte Date: Mon, 2 Feb 2026 22:58:34 -0800 Subject: [PATCH] fix(cli): correct example in install script The example had incorrect flag usage: - `~/my-project` should use `-w` flag for workspace - `-P` is not a valid flag, prompt is a positional argument Co-Authored-By: Claude Opus 4.5 --- apps/cli/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/install.sh b/apps/cli/install.sh index 1b01e51aa58..2576ec6cce8 100755 --- a/apps/cli/install.sh +++ b/apps/cli/install.sh @@ -278,7 +278,7 @@ print_success() { echo "" echo " ${BOLD}Example:${NC}" echo " export OPENROUTER_API_KEY=sk-or-v1-..." - echo " roo ~/my-project -P \"What is this project?\"" + echo " cd ~/my-project && roo \"What is this project?\"" echo "" }