create-agent-ui
v1.1.6
Published
CLI tool to create an Agent UI with one command
Readme
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-appThe 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 --localAfter Installation
Once your project is created:
Navigate to your project directory:
cd your-project-nameIf you didn't install dependencies during setup:
pnpm install # or yarn, npm, bun installStart the development server:
pnpm run dev # or yarn dev, npm dev, bun dev
License
MIT License
