Skip to content

Commit e5511d9

Browse files
committed
docs: use 'openboot install' consistently across all documentation
Update remaining references from 'openboot --user' to 'openboot install': - src/docs/personal.md - src/docs/cli-reference.md (with note about --user alternative) - src/docs/teams.md (multiple instances) Both formats are supported and equivalent, but 'install' is more intuitive and aligns better with familiar package manager patterns (npm install, brew install).
1 parent 45aee79 commit e5511d9

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

src/docs/cli-reference.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ openboot --preset developer
2929

3030
You can still customize in the TUI. To skip the TUI entirely, add `--silent`.
3131

32-
### `openboot --user <username>/<slug>`
32+
### `openboot install <username>/<slug>`
3333

3434
Install from a custom config hosted on openboot.dev.
3535

3636
```
37-
openboot --user sarah/frontend-team
37+
openboot install sarah/frontend-team
3838
```
3939

40+
Alternatively, use the `--user` flag: `openboot --user sarah/frontend-team` (same effect).
41+
4042
For private configs, run `openboot login` first — the CLI sends your auth token automatically.
4143

4244
### Install Flags

src/docs/personal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ openboot snapshot
108108
Updates your config. At home:
109109

110110
```bash
111-
openboot --user alex/my-setup
111+
openboot install alex/my-setup
112112
```
113113

114114
OpenBoot sees `jq` is in your config but not installed. Adds it. Two commands, both machines in sync. Works the other way too — install something at home, snapshot, pull it down at work next Monday.

src/docs/teams.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,7 @@ Add the install command to your `CONTRIBUTING.md`:
9090

9191
openboot install acme/frontend
9292

93-
Or install via Homebrew:
94-
95-
brew tap openbootdotdev/tap && brew install openboot
96-
openboot --user acme/frontend
97-
98-
Preview first: `openboot --user acme/frontend --dry-run`
93+
Preview first: `openboot install acme/frontend --dry-run`
9994
```
10095

10196
The URL never changes. When the stack changes, update the config in the [Dashboard](/dashboard). Everyone who runs the command next gets the latest version. No more editing a 47-step Google Doc.
@@ -119,8 +114,8 @@ Each has its own custom script. Backend clones the API monorepo and seeds the lo
119114
Full-stack dev working across teams? Run both. OpenBoot skips what's already installed.
120115

121116
```bash
122-
openboot --user acme/frontend
123-
openboot --user acme/backend
117+
openboot install acme/frontend
118+
openboot install acme/backend
124119
```
125120

126121
## Keeping everyone in sync

0 commit comments

Comments
 (0)