Install the CLI
curl -fsSL https://agentuity.sh | shThis installs the agentuity CLI globally on your system.
Alternative: Install via Bun
If you prefer package managers: bun install -g @agentuity/cli
Create a Project
agentuity project create --name my-app
# or
agentuity create --name my-appThis scaffolds a project using the default template, which includes a translation agent, API routes, and a React frontend with Tailwind.
Start the Dev Server
agentuity dev
# or
bun run devYour project is now running at http://localhost:3500. The dev server uses Vite for frontend updates and Bun for server rebuilds.
Bun Required
Agentuity projects run on Bun. If you don't have Bun installed, the CLI will prompt you to install it when you create your first project.
CLI Shortcuts
While the dev server is running, use these shortcuts:
| Key | Action |
|---|---|
h | Show help |
c | Clear console |
q | Quit |
Next Steps
- Quickstart: Build your first agent
- Project Structure: Understand the file layout