Skip to content

Commit d41bf08

Browse files
committed
docs: replace config install curl commands with CLI format in LLM context
Update static/llms-full.txt to use 'openboot install' instead of curl | bash for config installations (3 instances): - yourname/my-setup example - yourteam/frontend example - sarah/frontend-team example Keep curl | bash only for OpenBoot CLI installation itself. Simplify text to emphasize CLI-first approach.
1 parent e5511d9 commit d41bf08

File tree

1 file changed

+7
-14
lines changed

1 file changed

+7
-14
lines changed

static/llms-full.txt

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ openboot snapshot
118118

119119
Snapshot scans your Homebrew packages, macOS preferences, shell config, and git settings. You'll review everything in a TUI editor before uploading or saving locally.
120120

121-
After uploading, you get a shareable URL:
121+
After uploading, you get a shareable install command:
122122

123123
```
124-
curl -fsSL https://openboot.dev/yourname/my-setup/install.sh | bash
124+
openboot install yourname/my-setup
125125
```
126126

127127
## Team Setup? Share a Config
@@ -132,17 +132,10 @@ If you're setting up a team's standard environment:
132132
2. **Share installation instructions** in your README or onboarding docs:
133133

134134
```bash
135-
brew tap openbootdotdev/tap && brew install openboot
136-
openboot --user yourteam/frontend
135+
openboot install yourteam/frontend
137136
```
138137

139-
Or use the one-line installer as an alternative:
140-
141-
```bash
142-
curl -fsSL https://openboot.dev/yourteam/frontend/install.sh | bash
143-
```
144-
145-
3. **New team members** run the commands and get your exact setup
138+
3. **New team members** run the command and get your exact setup
146139

147140
---
148141

@@ -302,13 +295,13 @@ Build your own setup, save it on openboot.dev, and share it as a one-line instal
302295

303296
## Sharing
304297

305-
Every config gets a URL:
298+
Every config gets an install command:
306299

307300
```
308-
curl -fsSL https://openboot.dev/sarah/frontend-team/install.sh | bash
301+
openboot install sarah/frontend-team
309302
```
310303

311-
You can also install via the CLI directly:
304+
Alternatively, use the --user flag:
312305

313306
```
314307
openboot --user sarah/frontend-team

0 commit comments

Comments
 (0)