Quick start
Create your first AI agent with Klisk in under 5 minutes.
Prerequisites
- Python 3.10 or higher
- A generalist agent installed (Claude, Codex, OpenClaw, etc.)
- An OpenAI API key (or another provider)
Step 1: Install Klisk
bash
pip install kliskStep 2: Initialize the workspace
bash
kliskThis creates ~/klisk/ and ~/klisk/projects/ where your agents will live.
Step 3: Open your generalist agent
From the Klisk directory, open your favorite agent:
bash
cd ~/klisk
claude # or codex, openclaw, etc.Step 4: Ask it to create an agent
Simply describe what you need:
"Create an agent that helps me manage my daily tasks"
The agent will use the Klisk CLI to:
- Create the project with
klisk create - Define the necessary tools
- Configure the agent
- Open the Studio so you can test it
Step 5: Test your agent
The Studio will open automatically in your browser. From there you can:
- Chat with your agent
- View the agent and tool graph
- Edit properties in real time
You can also test it from the terminal:
bash
klisk run -p my-agent "Hello, what can you do?"What's next?
- Learn to define tools to give your agent superpowers
- Set up multi-agent for complex scenarios
- Deploy to the cloud to share your agent
