Klisk is a framework for building AI agents programmatically. Define agents and tools with a simple API, iterate with an interactive Studio, and deploy to production — all from the CLI.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Evincere/klisk/llms.txt
Use this file to discover all available pages before exploring further.
What is Klisk?
Klisk provides a complete development workflow for AI agents:Define Programmatically
Build agents and tools using a clean Python API built on top of the OpenAI Agents SDK
Interactive Studio
Test and debug your agents in a visual browser-based development environment with hot reload
Multi-Provider Support
Use any LLM provider via LiteLLM — OpenAI, Anthropic, Google, Mistral, and more
One-Command Deploy
Deploy to Google Cloud Run with a single CLI command
Key Features
Simple Agent Definition
Define agents with a declarative API that handles all the complexity:Custom Tools
Create tools using a simple decorator pattern. Klisk automatically extracts type hints and docstrings to generate tool schemas:Visual Development Studio
Launch an interactive development environment that opens in your browser:- Agent graph — visualize agents and their connected tools
- Live chat — test your agent with file attachments and tool call inspection
- Inline editing — modify agent configuration directly from the UI
- Hot reload — code changes update instantly without restarting
Multi-Provider LLM Support
Use any LLM provider via LiteLLM integration. Just prefix the model name:.env file (OPENAI_API_KEY, ANTHROPIC_API_KEY, GEMINI_API_KEY, etc.).
Builtin Tools
OpenAI models support provider-hosted tools out of the box:web_search— Search the web for informationcode_interpreter— Execute Python code in a sandboxed environmentfile_search— Search uploaded files using vector embeddingsimage_generation— Generate images from text descriptions
Builtin tools are only supported with OpenAI models. If you use a non-OpenAI model, these tools will be automatically disabled with a warning.
Reasoning Models
Configure reasoning effort for o-series and gpt-5+ models:none, minimal, low, medium, high, xhigh.
Production Server
Serve your agent with a chat UI and REST API:- Chat UI at
http://localhost:8080 - REST API at
/api/chat(streaming supported) - WebSocket endpoint at
/ws/chat - Embeddable widget via
/widget.js - Optional API key authentication via
KLISK_API_KEYenvironment variable
One-Command Deployment
Deploy to Google Cloud Run in one command:Why Klisk?
Focus on your agent logic, not infrastructure
Focus on your agent logic, not infrastructure
Klisk handles all the boilerplate — project scaffolding, hot reload, serving, deployment. You just write agent logic.
Iterate faster with visual tooling
Iterate faster with visual tooling
The interactive Studio lets you test and debug agents visually without writing test scripts or restarting servers.
Use any LLM provider
Use any LLM provider
Built on LiteLLM, Klisk supports OpenAI, Anthropic, Google, Mistral, and dozens of other providers with a unified API.
Production-ready from day one
Production-ready from day one
Built-in production server and one-command deployment mean you can go from prototype to production in minutes.
Architecture
Klisk is built on top of the OpenAI Agents SDK and uses:- LiteLLM for multi-provider LLM support
- FastAPI for the production server
- WebSockets for real-time chat streaming
- Watchfiles for hot reload in development