Installation — Agentuity Documentation

Installation

Set up your development environment

Install the CLI

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

This installs the agentuity CLI globally on your system.

Create a Project

agentuity create my-app

This scaffolds a project using the default template, which includes a translation agent, API routes, React frontend with Tailwind, and Workbench.

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 instant frontend updates and Bun for fast server rebuilds, so changes are reflected immediately.

CLI Shortcuts

While the dev server is running, use these shortcuts:

KeyAction
hShow help
cClear console
rRestart server
oShow API routes
aShow agents
qQuit

Next Steps