create-ag-ui-app 0.0.34 → 0.0.35
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 +45 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# create-ag-ui-app
|
|
2
|
+
|
|
3
|
+
CLI tool for scaffolding **Agent-User Interaction (AG-UI) Protocol** applications.
|
|
4
|
+
|
|
5
|
+
`create-ag-ui-app` provides an interactive setup wizard to quickly bootstrap AG-UI projects with your preferred client framework and agent backend. Choose from CopilotKit/Next.js for web apps or CLI clients for terminal-based interactions.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm create ag-ui-app@latest
|
|
11
|
+
pnpm create ag-ui-app@latest
|
|
12
|
+
yarn create ag-ui-app
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
- 🎯 **Interactive setup** – Guided prompts for client and framework selection
|
|
18
|
+
- 🌐 **Multiple clients** – CopilotKit/Next.js web apps and CLI clients
|
|
19
|
+
- 🔧 **Framework integration** – Built-in support for LangGraph, CrewAI, Mastra, AG2, and more
|
|
20
|
+
- 📦 **Zero config** – Automatically sets up dependencies and project structure
|
|
21
|
+
- ⚡ **Quick start** – Get from idea to running app in minutes
|
|
22
|
+
|
|
23
|
+
## Quick example
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Interactive setup
|
|
27
|
+
npm create ag-ui-app@latest
|
|
28
|
+
|
|
29
|
+
# With framework flags
|
|
30
|
+
npm create ag-ui-app@latest -- --langgraph
|
|
31
|
+
npm create ag-ui-app@latest -- --mastra
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Documentation
|
|
35
|
+
|
|
36
|
+
- Concepts & architecture: [`docs/concepts`](https://docs.ag-ui.com/concepts/architecture)
|
|
37
|
+
- Full API reference: [`docs/quickstart`](https://docs.ag-ui.com/quickstart/introduction)
|
|
38
|
+
|
|
39
|
+
## Contributing
|
|
40
|
+
|
|
41
|
+
Bug reports and pull requests are welcome! Please read our [contributing guide](https://docs.ag-ui.com/development/contributing) first.
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT © 2025 AG-UI Protocol Contributors
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-ag-ui-app",
|
|
3
3
|
"author": "Markus Ecker <markus.ecker@gmail.com>",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.35",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"bin": "./dist/index.mjs",
|
|
13
13
|
"sideEffects": false,
|
|
14
14
|
"files": [
|
|
15
|
-
"dist/**"
|
|
15
|
+
"dist/**",
|
|
16
|
+
"README.md"
|
|
16
17
|
],
|
|
17
18
|
"dependencies": {
|
|
18
19
|
"@types/inquirer": "^9.0.8",
|