Skip to content

User Quickstart

Get from zero to your first AI generation in under five minutes. No coding required.

1. Install Nimi

bash
# macOS / Linux
curl -fsSL https://install.nimi.xyz | sh

# or install via npm
npm install -g @nimiplatform/nimi

2. Start the Runtime

bash
nimi start

This launches the Nimi runtime daemon in the background.

3. Verify Everything Works

bash
nimi doctor
nimi status

nimi doctor runs a full environment check: CLI version, config path, gRPC health, runtime mode, process status, local engine status, provider status, and installed model count. nimi status confirms the daemon is reachable.

4. First Local Generation

bash
nimi run "What is Nimi?"

The runtime uses your local model by default. If the model is not yet installed, Nimi offers to pull it for you. Once the model is ready, text streams back to the terminal.

5. First Cloud Generation

One-shot with a cloud provider:

bash
nimi run "What is Nimi?" --provider gemini

If the provider API key is missing, Nimi prompts for it once and stores it in the runtime config.

6. Save a Default Cloud Provider

To avoid passing --provider every time:

bash
nimi provider set gemini --api-key-env NIMI_RUNTIME_CLOUD_GEMINI_API_KEY --default
export NIMI_RUNTIME_CLOUD_GEMINI_API_KEY=YOUR_KEY

Then use the saved default:

bash
nimi run "What is Nimi?" --cloud

--provider is the one-shot path. --cloud is the saved-default path.

Quickstart Walkthrough

Nimi quickstart walkthrough

Install, start the runtime, then run your first local or cloud prompt from the CLI.

Next Steps

Released under Apache-2.0 (runtime, sdk, proto) / MIT (desktop, nimi-mods, web) / CC-BY-4.0 (docs)