Skip to content

Commit 5455558

Browse files
authored
fix: tab reference (#708)
1 parent a249083 commit 5455558

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/content/docs/agent/getting-started/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The CLI scaffolds a complete Next.js app: a streaming chat with a sidebar, threa
99

1010
Run the create command and answer the prompts. One prompt asks **OpenUI Cloud or self-hosted?** Your choice decides which backend the scaffold wires up.
1111

12-
```bash tab="pnpx" tab-group="pkg"
12+
```bash tab="pnpm" tab-group="pkg"
1313
pnpx @openuidev/cli@latest create
1414
```
1515

docs/content/docs/api-reference/cli.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A command-line tool for scaffolding OpenUI chat apps and generating system promp
99

1010
Run without installing:
1111

12-
```bash tab="pnpx" tab-group="pkg"
12+
```bash tab="pnpm" tab-group="pkg"
1313
pnpx @openuidev/cli@latest <command>
1414
```
1515

docs/content/docs/api-reference/react-ui.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ import {
113113

114114
Generate the system prompt at build time with the CLI:
115115

116-
```bash tab="pnpx" tab-group="pkg"
116+
```bash tab="pnpm" tab-group="pkg"
117117
pnpx @openuidev/cli@latest generate ./src/library.ts --out src/generated/system-prompt.txt
118118
```
119119

docs/content/docs/openui-lang/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ description: Bootstrap a GenUI chat app in under a minute.
1414

1515
## Create the app
1616

17-
```bash tab="pnpx" tab-group="pkg"
17+
```bash tab="pnpm" tab-group="pkg"
1818
pnpx @openuidev/cli@latest create --name genui-chat-app
1919
```
2020

docs/content/docs/openui-lang/standard-library.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { openuiLibrary } from "@openuidev/react-ui";
3737

3838
Use the CLI to generate the system prompt at build time:
3939

40-
```bash tab="pnpx" tab-group="pkg"
40+
```bash tab="pnpm" tab-group="pkg"
4141
pnpx @openuidev/cli@latest generate ./src/library.ts --out src/generated/system-prompt.txt
4242
```
4343

docs/content/docs/openui-lang/system-prompts.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The system prompt tells the LLM how to output valid OpenUI Lang. There are two w
99

1010
The fastest way to generate a system prompt — works with any backend language:
1111

12-
```bash tab="pnpx" tab-group="pkg"
12+
```bash tab="pnpm" tab-group="pkg"
1313
pnpx @openuidev/cli@latest generate ./src/library.ts
1414
```
1515

@@ -27,7 +27,7 @@ npx @openuidev/cli@latest generate ./src/library.ts
2727

2828
Write to a file:
2929

30-
```bash tab="pnpx" tab-group="pkg"
30+
```bash tab="pnpm" tab-group="pkg"
3131
pnpx @openuidev/cli@latest generate ./src/library.ts --out system-prompt.txt
3232
```
3333

@@ -45,7 +45,7 @@ npx @openuidev/cli@latest generate ./src/library.ts --out system-prompt.txt
4545

4646
Generate the component spec as JSON (for use with `generatePrompt`):
4747

48-
```bash tab="pnpx" tab-group="pkg"
48+
```bash tab="pnpm" tab-group="pkg"
4949
pnpx @openuidev/cli@latest generate ./src/library.ts --json-schema
5050
```
5151

@@ -69,7 +69,7 @@ For backends that need dynamic prompts - different tools, preambles, or feature
6969

7070
First, generate the component spec JSON via the CLI:
7171

72-
```bash tab="pnpx" tab-group="pkg"
72+
```bash tab="pnpm" tab-group="pkg"
7373
pnpx @openuidev/cli generate ./src/library.ts --json-schema --out generated/component-spec.json
7474
```
7575

0 commit comments

Comments
 (0)