CLI Installation
Installation
Section titled “Installation”bun add -g @llmist/clinpm install -g @llmist/clipnpm add -g @llmist/cliyarn global add @llmist/cliOr run directly without installing:
bunx llmist --helpnpx llmist --helpVerify the installation:
llmist --versionConfiguration
Section titled “Configuration”-
Set up API keys
Set at least one provider API key. See Environment Variables for all options.
Terminal window export ANTHROPIC_API_KEY=sk-ant-...# or OPENAI_API_KEY, GEMINI_API_KEY -
Initialize configuration (optional)
Create a configuration file for custom commands:
Terminal window llmist initThis creates
~/.llmist/cli.tomlwith default settings. -
Verify setup
Test with a simple completion:
Terminal window llmist complete "Hello, world!"
Configuration File
Section titled “Configuration File”The configuration file at ~/.llmist/cli.toml supports:
- Default model and options for each command
- Custom commands with pre-defined prompts
- Prompt templates for reusable content
- Gadget approval rules for security
Example:
[global]log-level = "warn"
[complete]model = "sonnet"temperature = 0.7
[agent]model = "gpt-5"max-iterations = 10tui = true
# Custom command[code-review]inherit = "agent"system = "You are a code reviewer. Analyze the provided code for bugs, security issues, and best practices."Next Steps
Section titled “Next Steps”Now that you have the CLI installed, try the Quick Start to run your first agent!