Skip to main content

Installation

The quickest way to install Terramind:
curl -fsSL https://terramind.com/install | bash
Or install using your preferred package manager:
npm install -g terramind

Verify Installation

Check that Terramind is installed correctly:
terramind --version

Your First Command

Start an interactive session:
terramind
Or run a single command:
terramind run "Write a hello world function in TypeScript"

Using a Specific Model

You can specify which AI model to use:
terramind run "Explain recursion" --model claude-sonnet-4-5

Common Commands

Interactive Mode

terramind
Start an interactive coding session

Single Command

terramind run "your prompt"
Execute a single AI command

List Models

terramind models
See all available AI models

Authentication

terramind auth
Configure your API credentials

Authentication

Before using Terramind, you’ll need to authenticate:
terramind auth
You can authenticate using:
  • Firebase token
  • Terramind API key
Get your API key from terramind.com.

Next Steps