CLI Reference
config
Manage CLI configuration values
$
limai config <subcommand>Read and write CLI configuration stored at ~/.limai/config.json.
Options
--jsonOutput raw JSON--verboseEnable debug loggingConfiguration Keys
| Key | Description |
|---|---|
apiUrl | API base URL |
token | API authentication token |
sseUrl | Server-sent events URL (for limai watch) |
defaultProjectId | Default project ID |
defaultDeploymentId | Default deployment ID |
Subcommands
limai config list
Show all configuration values. Token values are truncated for security.
limai config listlimai config get <key>
Get a single configuration value.
limai config get <key>limai config set <key> <value>
Set a configuration value. Only the keys listed above are accepted.
limai config set <key> <value>Examples
Set the default project
limai config set defaultProjectId proj_abc123View the current API URL
limai config get apiUrlList all config as JSON
limai config list --jsonConfigure the SSE URL for event watching
limai config set sseUrl wss://ws.limai.ai