Lite SuiteLite Suite

CLI Commands

Command-line tools available with Lite Suite

CLI Commands

Lite Suite provides command-line access through two tools: the LiteAgent CLI for autonomous agent operations and LiteCLI for MCP server access.

LiteAgent CLI

The Python-based agent CLI for running autonomous AI sessions.

liteagent agent              # Interactive REPL
liteagent agent -p "..."     # One-shot prompt
liteagent agent --restricted # Read-only scout mode
liteagent review             # Review most recent session
liteagent review --all       # Sweep all unreviewed sessions
liteagent review-sweep       # Batch sweep (used by heartbeat)

See LiteAgent docs for full details.

LiteCLI

Universal CLI for MCP servers. Connect any MCP server, get CLI commands instantly.

litecli                      # Launch the TUI
litecli admin add ...        # Register an MCP backend
litecli admin discover       # Discover available tools
litecli <prefix> <tool>      # Call an MCP tool
litecli --json <prefix> <tool> # JSON output for scripts
litecli compile <skill.md>   # Compile a skill to CLI
litecli compiled list        # List compiled CLIs
litecli compiled run <name>  # Run a compiled CLI

See LiteCLI docs for full usage and configuration.

LiteHarness CLI

Agent orchestration from the command line (Python).

python -m liteharness.cli discover         # List online agents
python -m liteharness.cli send <id> "msg"  # Message an agent
python -m liteharness.cli register ...     # Register a session
python -m liteharness.cli status           # Check agent status

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | LITESUITE_PORT | Backend server port | 3773 | | LITESUITE_TTS_PORT | TTS server port | 5123 | | LITESUITE_WHISPER_PORT | Whisper STT port | 8080 | | LITESUITE_VOICE_API_PORT | Voice API port | 7438 | | LITE_PYTHON | Path to Python interpreter | Auto-detected |