create-assistant-ui 0.0.53 → 0.0.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,9 +1,33 @@
|
|
|
1
1
|
# `create-assistant-ui`
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/create-assistant-ui)
|
|
4
|
+
[](https://www.npmjs.com/package/create-assistant-ui)
|
|
5
|
+
[](https://github.com/assistant-ui/assistant-ui)
|
|
6
|
+
|
|
7
|
+
Scaffold a new assistant-ui project from a chosen template (default AI SDK, minimal, cloud, langgraph, MCP, and more).
|
|
4
8
|
|
|
5
9
|
## Usage
|
|
6
10
|
|
|
7
|
-
```
|
|
8
|
-
npm create assistant-ui
|
|
11
|
+
```bash
|
|
12
|
+
npm create assistant-ui my-app
|
|
13
|
+
pnpm create assistant-ui my-app
|
|
14
|
+
yarn create assistant-ui my-app
|
|
15
|
+
bunx create-assistant-ui my-app
|
|
9
16
|
```
|
|
17
|
+
|
|
18
|
+
This wraps the `assistant-ui create` command from the [`assistant-ui` CLI](https://www.npmjs.com/package/assistant-ui). Pass `-t <template>` to pick a starter, or `--preset <url>` to scaffold from an `assistant-ui.com` playground link.
|
|
19
|
+
|
|
20
|
+
## Templates
|
|
21
|
+
|
|
22
|
+
| Name | Description |
|
|
23
|
+
| -------------- | ---------------------------------------------------------- |
|
|
24
|
+
| `default` | Next.js + Vercel AI SDK (the recommended starting point). |
|
|
25
|
+
| `minimal` | Smallest possible Next.js + assistant-ui setup. |
|
|
26
|
+
| `cloud` | Default template plus Assistant Cloud thread persistence. |
|
|
27
|
+
| `cloud-clerk` | Cloud template with Clerk authentication. |
|
|
28
|
+
| `langgraph` | Next.js + LangGraph agent backend. |
|
|
29
|
+
| `mcp` | Next.js + an MCP server integration. |
|
|
30
|
+
|
|
31
|
+
## Documentation
|
|
32
|
+
|
|
33
|
+
Full template list and flag reference at [assistant-ui.com/docs/cli](https://www.assistant-ui.com/docs/cli).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-assistant-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"description": "Create assistant-ui apps with one command",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"cross-spawn": "^7.0.6",
|
|
29
|
-
"assistant-ui": "0.0.
|
|
29
|
+
"assistant-ui": "0.0.92"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/cross-spawn": "^6.0.6",
|
|
33
|
-
"@assistant-ui/x-buildutils": "0.0.
|
|
33
|
+
"@assistant-ui/x-buildutils": "0.0.8"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public",
|