Installation — Agentuity Documentation

Installation

Set up your development environment

Install the CLI

curl -fsSL https://agentuity.sh | sh

This installs the agentuity CLI globally on your system.

Create a Project

agentuity project create --name my-app
# or
agentuity create --name my-app

This 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 dev

Your project is now running at http://localhost:3500. The dev server uses Vite for frontend updates and Bun for server rebuilds.

CLI Shortcuts

While the dev server is running, use these shortcuts:

KeyAction
hShow help
cClear console
qQuit

Next Steps