plit
Supported platforms: Linux (native), macOS (via Docker), Windows (via WSL2).
Install
This installs two binaries: plit (the CLI) and plit-gw (the gateway server).
Quick start
# 1. Interactive setup: configure Pipelit, your LLM provider, and credentials
# 2. Start the gateway, Pipelit, and workers
That's it. You're running.
Commands
plit init
Interactive wizard. Walks you through:
- Connecting to your Pipelit instance
- Configuring an LLM provider
- Creating initial credentials
Run this once before anything else.
plit start / plit stop
Start and stop the full stack: gateway, Pipelit, and background workers. Managed via honcho.
plit chat
Interactive REPL for chatting with your configured agent.
plit send
One-shot message. Pipe-friendly.
|
Output is plain text on a TTY, JSON when piped. Pass --json to force JSON anywhere.
plit listen
Stream incoming messages as JSONL over WebSocket. Useful for scripting and log tailing.
|
plit credentials
Manage gateway credentials.
plit health
Check gateway and backend health.
plit uninstall
Remove configuration and stop running services.
Environment variables
| Variable | Description |
|---|---|
GATEWAY_URL |
Gateway base URL (e.g. http://localhost:8080) |
GATEWAY_TOKEN |
Token for standard API access |
GATEWAY_ADMIN_TOKEN |
Token for admin operations (credentials, health) |
These override values from the config file written by plit init.
Output modes
plit adapts its output to context:
- TTY — human-readable, formatted
- Piped — JSON automatically
--json— force JSON regardless of context
Architecture
plit is a thin CLI wrapper around plit-gw. Installing plit gives you both the command-line interface and the gateway server in a single cargo install. The gateway handles protocol adapters, message routing, and backend connections. The CLI handles setup, process management, and user-facing interaction.
For gateway configuration, adapter setup, and backend protocol details, see the plit-gw repository.
Related
License
Apache 2.0. See LICENSE.