GRID CLI

Install and use GRID from the command line. Run AI-assisted commands, manage projects, and automate workflows.

Installation

Direct Download

Available Now

Download standalone CLI binaries from our GitHub releases. Available for Windows, macOS, and Linux.

# After downloading, add to your PATH:

export PATH="$HOME/grid-cli:$PATH"

npm / npx

Available Now

Install globally via npm for easy updates and PATH management.

# Global installation

npm install -g @grid-editor/cli

# Or run directly with npx

npx @grid-editor/cli

Verify Installation

After installation, verify the CLI is working correctly:

~ grid --version

GRID CLI v1.0.0

~ grid --help

Usage: grid [command] [options]

Commands:

auth Authenticate with GRID

run Run AI-assisted commands

config Manage configuration

help Show help information

Authentication

Connect the CLI to your GRID account to sync settings and access cloud features.

~ grid auth login

info Opening browser for authentication...

info Waiting for callback...

success Logged in as user@example.com

Note: You can also use API keys for CI/CD environments. Generate one from your Dashboard Settings.

Next Steps