Skip to content

Assistant

The Studio includes an integrated AI assistant that can create, configure, and debug agents for you using natural language. Instead of writing code yourself, you describe what you want and the assistant builds it.

Prerequisites

  1. Install the assistant extra:
bash
pip install 'klisk[assistant]'
  1. You must have Claude Code installed and an active session. The assistant runs on top of Claude Code with the Klisk skill pre-loaded, so it needs to be installed and logged in before you can use it.

What it can do

The assistant has full knowledge of the Klisk framework and can:

  • Create new projects and scaffold tools
  • Edit agent instructions and configuration
  • Add and wire up new tools
  • Debug issues with klisk check
  • Open the Studio to test your agent
  • Deploy to production

Using the assistant

You can open the assistant from the Studio or from the terminal:

bash
klisk assistant [<name>]

If you pass a project name, the assistant opens in the context of that project. Without arguments, it starts a general session.

Example

bash
klisk assistant my-agent

"Add a tool that searches for products in my Shopify store and wire it to the agent"

The assistant will create the tool file, add the necessary dependencies, update get_tools() in main.py, and run klisk check to validate everything — all without you writing a single line of code.

Klisk Documentation