Skip to content

Studio

The Studio is Klisk's visual interface for testing, debugging, and customizing your agents. It runs locally in your browser and connects to your projects in real time.

Starting the Studio

bash
klisk studio

The server starts as a background daemon — it prints the URL and returns control to the terminal immediately. It survives terminal closure.

If a server is already running, Klisk detects it and shows the existing URL instead of launching a duplicate.

To stop it:

bash
klisk studio --stop

Workspace mode

The Studio loads all projects from ~/klisk/projects/ into a single session. If agents from different projects share a name, they are prefixed with the project name to avoid conflicts.

Features

Chat

A chat panel where you can talk to any of your agents. Select the agent you want to test and start a conversation — responses stream in real time.

Agent graph

A visual graph that shows all agents, their tools, and handoff connections. This makes it easy to understand the conversation flow in multi-agent setups.

Customize

Edit agent properties and deployment settings visually. Changes you make here are saved to klisk.config.yaml and automatically applied when you deploy with klisk start or klisk docker.

Hot reload

File changes in your project are reflected automatically — no need to restart the server.

Configuration

You can change the Studio port in klisk.config.yaml:

yaml
studio:
  port: 3000  # default

See the Configuration reference for all available options.

Klisk Documentation