1.1.0 • Published 4 months ago
create-agent-ui v1.1.0
create-agent-ui
A CLI tool that helps you quickly create a new Agent UI project. It sets up everything you need to get started with your Agent UI template.
Usage
# Using npx (recommended)
npx create-agent-ui my-agent-app
# Using yarn
yarn create agent-ui@latest my-agent-app
# Using pnpm
pnpm create agent-ui@latest my-agent-app
# Using bun
bunx create-agent-ui@latest my-agent-app
The CLI will automatically:
- Create a new directory with your project name
- Clone the latest version of the Agent UI template
- Remove git history to start fresh
- Optionally install dependencies based on your choice
Prerequisites
- Node.js (v14 or higher)
- Git
- One of the following package managers:
- npm
- yarn
- pnpm
- bun
Development
Testing Locally
You can test the CLI locally by running:
npx create-agent-ui my-agent-app --local
After Installation
Once your project is created:
Navigate to your project directory:
cd your-project-name
If you didn't install dependencies during setup:
pnpm install # or yarn, npm, bun install
Start the development server:
pnpm run dev # or yarn dev, npm dev, bun dev