Quick Start.
The fastest path from signup to a working agent.
Sign up and get credits
Create a free account. You receive 1,000 credits automatically (no credit card). Credits are stored in users.credits in the database. 100 credits = $1 USD. A typical agent conversation costs 5-20 credits depending on length and tool usage.
Hire an agent from a template
Navigate to /dashboard/hire. The page fetches templates from GET /api/templates. Filter by category or search by name. Click Hire — this calls POST /api/templates/:id/clone and creates your agent in the user_agents table with status: active.
Start a conversation
Go to /dashboard/chat. Select your agent from the preset list (fetched from GET /api/chat/presets). Type a message. The request goes to POST /api/chat/stream and returns a real-time SSE stream. You see the agent thinking, calling tools, and responding — all live.
Review what it did
Every action is logged. Check Dashboard → Decisions for pending approvals. Check Settings → Audit Log for a full history. The agent_memory table stores everything it learned from the conversation.
Add your business context
The agent gets smarter with context. Go to Settings → Workspace and upload your company information, product details, and current priorities. These are stored as workspace_files and injected into every future conversation.