Quick Start

Prerequisites

Install & Run

git clone https://github.com/kaizen-labs-ai/kaizen.git
cd kaizen
npm run setup
npm run build
npm start

Open http://localhost:3000arrow-up-right.

Development mode: If you want to run with hot-reloading for development, use npm run dev instead of npm run build && npm start.

First Launch

On first launch, you'll be prompted to enter your OpenRouterarrow-up-right API key. This key gives Kaizen access to AI models (Claude, GPT, Gemini, etc.).

  1. Go to openrouter.aiarrow-up-right and create an account

  2. Generate an API key

  3. Paste it into the setup dialog

The key is stored in an encrypted local vault (AES-256-GCM), never in plain text or environment variables.

Your First Task

  1. Click New Chat

  2. Type a task, for example: "Search the web for the latest AI news and summarize the top 3 stories"

  3. Press Enter

Kaizen will route your request through its agent pipeline, use the appropriate tools, and return the result. You can watch each step in real time by toggling Dev mode in the chat header.

What's Next

Updating

To update Kaizen to the latest version:

Stop the server before updating. This pulls the latest code, applies any new dependencies or database changes, rebuilds the app, and starts it again. Your data (chats, skills, memory, secrets) is preserved.

Last updated