|
1 | 1 | # CLI Reference |
2 | 2 |
|
3 | | -RexOS ships a single binary: `rexos`. |
| 3 | +LoopForge ships a primary binary: `loopforge`. |
| 4 | +Compatibility binary `rexos` remains available during migration. |
4 | 5 |
|
5 | 6 | ## Top-level commands |
6 | 7 |
|
7 | | -- `rexos init` — initialize `~/.rexos` (config + database) |
8 | | -- `rexos onboard` — one-command onboarding (`init` + config validate + `doctor` + optional first task) |
9 | | -- `rexos doctor` — diagnose common setup issues (config, providers, browser, tooling) |
10 | | -- `rexos agent run` — run a single agent session in a workspace |
11 | | -- `rexos channel drain` — drain queued outbox messages once |
12 | | -- `rexos channel worker` — run a polling outbox dispatcher |
13 | | -- `rexos acp events` — list recent ACP events (optional session filter) |
14 | | -- `rexos acp checkpoints` — show delivery checkpoints for a session |
15 | | -- `rexos harness init` — initialize a harness workspace (durable artifacts + git) |
16 | | -- `rexos harness run` — run an incremental harness session |
17 | | -- `rexos daemon start` — start the HTTP daemon |
| 8 | +- `loopforge init` — initialize `~/.rexos` (config + database) |
| 9 | +- `loopforge onboard` — one-command onboarding (`init` + config validate + `doctor` + optional first task) |
| 10 | +- `loopforge doctor` — diagnose common setup issues (config, providers, browser, tooling) |
| 11 | +- `loopforge agent run` — run a single agent session in a workspace |
| 12 | +- `loopforge channel drain` — drain queued outbox messages once |
| 13 | +- `loopforge channel worker` — run a polling outbox dispatcher |
| 14 | +- `loopforge acp events` — list recent ACP events (optional session filter) |
| 15 | +- `loopforge acp checkpoints` — show delivery checkpoints for a session |
| 16 | +- `loopforge harness init` — initialize a harness workspace (durable artifacts + git) |
| 17 | +- `loopforge harness run` — run an incremental harness session |
| 18 | +- `loopforge daemon start` — start the HTTP daemon |
| 19 | + |
| 20 | +Compatibility note: all commands above also work with `rexos` during migration. |
18 | 21 |
|
19 | 22 | ## Examples |
20 | 23 |
|
21 | 24 | === "macOS/Linux" |
22 | 25 | ```bash |
23 | | - rexos init |
24 | | - rexos onboard --workspace rexos-onboard-demo |
| 26 | + loopforge init |
| 27 | + loopforge onboard --workspace rexos-onboard-demo |
25 | 28 |
|
26 | 29 | mkdir -p rexos-work |
27 | | - rexos agent run --workspace rexos-work --prompt "Create hello.txt" |
| 30 | + loopforge agent run --workspace rexos-work --prompt "Create hello.txt" |
28 | 31 |
|
29 | 32 | mkdir -p rexos-task |
30 | | - rexos harness init rexos-task --prompt "Initialize a features checklist for refactoring this repo" |
31 | | - rexos harness run rexos-task --prompt "Continue" |
| 33 | + loopforge harness init rexos-task --prompt "Initialize a features checklist for refactoring this repo" |
| 34 | + loopforge harness run rexos-task --prompt "Continue" |
32 | 35 |
|
33 | | - rexos channel drain |
34 | | - rexos acp events --limit 20 |
| 36 | + loopforge channel drain |
| 37 | + loopforge acp events --limit 20 |
35 | 38 |
|
36 | | - rexos daemon start --addr 127.0.0.1:8787 |
| 39 | + loopforge daemon start --addr 127.0.0.1:8787 |
37 | 40 | ``` |
38 | 41 |
|
39 | 42 | === "Windows (PowerShell)" |
40 | 43 | ```powershell |
41 | | - rexos init |
42 | | - rexos onboard --workspace rexos-onboard-demo |
| 44 | + loopforge init |
| 45 | + loopforge onboard --workspace rexos-onboard-demo |
43 | 46 |
|
44 | 47 | mkdir rexos-work |
45 | | - rexos agent run --workspace rexos-work --prompt "Create hello.txt" |
| 48 | + loopforge agent run --workspace rexos-work --prompt "Create hello.txt" |
46 | 49 |
|
47 | 50 | mkdir rexos-task |
48 | | - rexos harness init rexos-task --prompt "Initialize a features checklist for refactoring this repo" |
49 | | - rexos harness run rexos-task --prompt "Continue" |
| 51 | + loopforge harness init rexos-task --prompt "Initialize a features checklist for refactoring this repo" |
| 52 | + loopforge harness run rexos-task --prompt "Continue" |
50 | 53 |
|
51 | | - rexos channel drain |
52 | | - rexos acp events --limit 20 |
| 54 | + loopforge channel drain |
| 55 | + loopforge acp events --limit 20 |
53 | 56 |
|
54 | | - rexos daemon start --addr 127.0.0.1:8787 |
| 57 | + loopforge daemon start --addr 127.0.0.1:8787 |
55 | 58 | ``` |
0 commit comments