TheDocumentation Index
Fetch the complete documentation index at: https://docs.karta.sh/llms.txt
Use this file to discover all available pages before exploring further.
karta CLI ships with karta-python (pip install karta-python). It’s
the fastest way to develop a harness app, run a local server, and inspect live
sessions.
Develop: karta dev
A hot-reloading REPL against a folder — no server needed. The fastest inner
loop while authoring an app.
| Flag | Purpose |
|---|---|
path | The harness app folder (default .). |
--message | Send one message and exit (otherwise interactive). |
--config | Path to karta.jsonc (default ./karta.jsonc). |
--thinking | Surface reasoning events. |
--verbose | Render raw harness events. |
--harness-arg | Pass a raw argument through to the harness (repeatable). |
Serve: karta serve
Start the FastAPI HTTP server — the uniform session API, multi-tenant and
instance-managed, that survives restarts.
Run a registered project: karta run
Run a project you’ve registered by name. Starts
serve if it isn’t already up.
Command map
project and
session subcommands in detail.
This is the Python CLI for local development and serving. The separate
@karta/cli (npm) is for the hosted platform —
deploying releases, rolling back, and streaming logs against your account.