@@ -44,13 +44,13 @@ curl -fsSL https://raw.githubusercontent.com/RooCodeInc/Roo-Code/main/apps/cli/i
4444Or run:
4545
4646``` bash
47- roo upgrade
47+ zoo upgrade
4848```
4949
5050### Uninstalling
5151
5252``` bash
53- rm -rf ~ /.roo/cli ~ /.local/bin/roo
53+ rm -rf ~ /.roo/cli ~ /.local/bin/zoo
5454```
5555
5656### Development Installation
@@ -77,13 +77,13 @@ By default, the CLI auto-approves actions and runs in interactive TUI mode:
7777``` bash
7878export OPENROUTER_API_KEY=sk-or-v1-...
7979
80- roo " What is this project?" -w ~ /Documents/my-project
80+ zoo " What is this project?" -w ~ /Documents/my-project
8181```
8282
8383You can also run without a prompt and enter it interactively in TUI mode:
8484
8585``` bash
86- roo -w ~ /Documents/my-project
86+ zoo -w ~ /Documents/my-project
8787```
8888
8989In interactive mode:
@@ -98,7 +98,7 @@ In interactive mode:
9898If you want manual approval prompts, enable approval-required mode:
9999
100100``` bash
101- roo " Refactor the utils.ts file" --require-approval -w ~ /Documents/my-project
101+ zoo " Refactor the utils.ts file" --require-approval -w ~ /Documents/my-project
102102```
103103
104104In approval-required mode:
@@ -112,10 +112,10 @@ Use `--print` for non-interactive execution and machine-readable output:
112112
113113``` bash
114114# Prompt is required
115- roo --print " Summarize this repository"
115+ zoo --print " Summarize this repository"
116116
117117# Create a new task with a specific session ID (UUID)
118- roo --print --create-with-session-id 018f7fc8-7c96-7f7c-98aa-2ec4ff7f6d87 " Summarize this repository"
118+ zoo --print --create-with-session-id 018f7fc8-7c96-7f7c-98aa-2ec4ff7f6d87 " Summarize this repository"
119119```
120120
121121### Autonomous Orchestrator Draft (` --autonomous ` )
@@ -127,7 +127,7 @@ Every new autonomous root starts in the effective `orchestrator` mode. A project
127127``` bash
128128export OPENROUTER_API_KEY=sk-or-v1-...
129129
130- roo --autonomous --print \
130+ zoo --autonomous --print \
131131 --workspace /absolute/path/to/project \
132132 --timeout 3600 \
133133 --output-format stream-json \
@@ -186,10 +186,10 @@ For programmatic control (one process, multiple prompts), use `--stdin-prompt-st
186186Send NDJSON commands via stdin:
187187
188188``` bash
189- printf ' {"command":"start","requestId":"1","prompt":"1+1=?"}\n' | roo --print --stdin-prompt-stream --output-format stream-json
189+ printf ' {"command":"start","requestId":"1","prompt":"1+1=?"}\n' | zoo --print --stdin-prompt-stream --output-format stream-json
190190
191191# Optional: provide taskId per start command
192- printf ' {"command":"start","requestId":"1","taskId":"018f7fc8-7c96-7f7c-98aa-2ec4ff7f6d87","prompt":"1+1=?"}\n' | roo --print --stdin-prompt-stream --output-format stream-json
192+ printf ' {"command":"start","requestId":"1","taskId":"018f7fc8-7c96-7f7c-98aa-2ec4ff7f6d87","prompt":"1+1=?"}\n' | zoo --print --stdin-prompt-stream --output-format stream-json
193193```
194194
195195### Legacy Roo Auth Token Cleanup
@@ -200,10 +200,10 @@ Roo Code Router has been removed from the CLI. The remaining `auth` commands onl
200200
201201``` bash
202202# Check whether a legacy Roo auth token is still stored
203- roo auth status
203+ zoo auth status
204204
205205# Remove an old stored Roo auth token
206- roo auth logout
206+ zoo auth logout
207207```
208208
209209If you never used Roo Code Router, you can ignore this section entirely.
@@ -239,8 +239,8 @@ If you never used Roo Code Router, you can ignore this section entirely.
239239
240240| Command | Description |
241241| ----------------- | ------------------------------------ |
242- | ` roo auth logout` | Clear a stored legacy Roo auth token |
243- | ` roo auth status` | Show legacy Roo token status |
242+ | ` zoo auth logout` | Clear a stored legacy Roo auth token |
243+ | ` zoo auth status` | Show legacy Roo token status |
244244
245245## Environment Variables
246246
0 commit comments